Table of Contents

Enum eChartColorStyleMethod

Namespace
OfficeOpenXml.Drawing.Chart.Style
Assembly
EPPlus.dll

Method for how colors are picked from the Colors collection

public enum eChartColorStyleMethod

Fields

AcrossLinear = 2

The color picked from Colors is the index modulus the total set of colors in the list. The brightness varies from lighter to darker

AcrossLinearReversed = 4

The color picked from Colors is the index modulus the total set of colors in the list. The brightness varies from darkerlighter.

Cycle = 0

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

WithinLinear = 1

The color picked from Colors is the first color with a brightness that varies from darker to lighter.

WithinLinearReversed = 3

The color picked from Colors is the first color with a brightness that varies from lighter to darker. The brightness varies from darker to lighter.