Spread Windows Forms 18
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Charts Namespace / ColorStyleMethod Enumeration


In This Topic
    ColorStyleMethod Enumeration
    In This Topic
    Specifies how colors are picked from a ColorStyle given a zero based index and a count of objects being colored.
    Syntax
    'Declaration
     
    
    Public Enum ColorStyleMethod 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As ColorStyleMethod
    public enum ColorStyleMethod : System.Enum 
    Members
    MemberDescription
    AcrossLinearThe color picked from CT_ColorStyle is the index modulus the total set of colors in CT_ColorStyle. The color has a brightness that varies from darker to lighter based on how close the index is from 0 and the count of objects being colored respectively.
    AcrossLinearReversedThe color picked from CT_ColorStyle is the index modulus the total set of colors in CT_ColorStyle. The color has a brightness that varies from lighter to darker based on how close the index is from 0 and the count of objects being colored respectively.
    CycleThe color picked from CT_ColorStyle is the index modulus the total set of colors in CT_ColorStyle.
    WithinLinearThe color picked from CT_ColorStyle is the first color with a brightness that varies from darker to lighter based on how close the index is from 0 and the count of objects being colored respectively.
    WithinLinearReversedThe color picked from CT_ColorStyle is the first color with a brightness that varies from lighter to darker based on how close the index is from 0 and the count of objects being colored respectively.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.Spreadsheet.Charts.ColorStyleMethod

    See Also