CandleStickReductionOptions.FillMode Property
In This Article
Gets or sets a value specifying how the Candle Stick Series View points will be filled.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.2.dll
NuGet Package: DevExpress.Charts
#Declaration
public CandleStickFillMode FillMode { get; set; }
#Property Value
Type | Description |
---|---|
Candle |
The specified fill mode. |
Available values:
Name | Description |
---|---|
Filled |
A candle is filled if its open value is greater than its close value. |
Filled |
A candle is filled if its close value is greater than or equal to its open value. |
Always |
Candles are always empty. |
Always |
Candles are always filled. |
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Fill |
---|---|
Candle |
|
Candle |
|
#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 |
---|---|---|
Candle |
Candles are always empty. | ![]() |
Candle |
Candles are always filled. | ![]() |
Candle |
A candle is filled if its close value is greater than or equal to its open value. | ![]() |
Candle |
A candle is filled if its open value is greater than its close value. | ![]() |
See Also