[]
        
(Showing Draft Content)

GrapeCity.Spreadsheet.Charts.ColorStyleMethod

ColorStyleMethod Enum

Specifies how colors are picked from a ColorStyle given a zero based index and a count of objects being colored.

Namespace: GrapeCity.Spreadsheet.Charts
Assembly: GrapeCity.Spreadsheet.dll
Syntax
public enum ColorStyleMethod
Public Enum ColorStyleMethod

Fields

Name Description
AcrossLinear

The 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.

AcrossLinearReversed

The 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.

Cycle

The color picked from CT_ColorStyle is the index modulus the total set of colors in CT_ColorStyle.

WithinLinear

The 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.

WithinLinearReversed

The 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.