Skip to main content

ReductionColorMode Enum

Lists the values that are used to define how financial series points will be painted.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

[ResourceFinder(typeof(XtraChartsResFinder))]
public enum ReductionColorMode

Members

Name Description
PreviousToCurrentPoint

Points are colorized with the color specified by the ReductionStockOptions.Color property if the value of the previous point is greater than the value of the current point (the value is decreased). The StockPointOptions.ValueLevel property specifies the point value that should be compared.

PreviousToCurrentPoint

OpenToCloseValue

Points are colorized with a color defined by the ReductionStockOptions.Color property if the point open value is greater than the point close value (the price is decreased).

OpenToCloseValue

Related API Members

The following properties accept/return ReductionColorMode values:

Library Related API Members
Cross-Platform Class Library ReductionStockOptions.ColorMode
WinForms Controls ReductionStockOptionsModel.ColorMode

Remarks

The values listed by this enumeration can be used to set the ReductionStockOptions.ColorMode property.

See Also