CandleStickReductionOptions.FillMode Property
Gets or sets a value specifying how the Candle Stick Series View points will be filled.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
Property Value
Type | Description |
---|---|
CandleStickFillMode | The specified fill mode. |
Available values:
Name | Description |
---|---|
FilledOnReduction | A candle is filled if its open value is greater than its close value. |
FilledOnIncrease | A candle is filled if its close value is greater than or equal to its open value. |
AlwaysEmpty | Candles are always empty. |
AlwaysFilled | Candles are always filled. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to FillMode |
---|---|
CandleStickDrawOptions |
|
CandleStickSeriesView |
|
Remarks
To specify the FillMode property, use the CandleStickFillMode enumeration values. The following table lists all the possible values of the property.
Value | Description | Image |
---|---|---|
CandleStickFillMode.AlwaysEmpty | Candles are always empty. | |
CandleStickFillMode.AlwaysFilled | Candles are always filled. | |
CandleStickFillMode.FilledOnIncrease | A candle is filled if its close value is greater than or equal to its open value. | |
CandleStickFillMode.FilledOnReduction | A candle is filled if its open value is greater than its close value. |
See Also