Back to Devexpress

CandleStickSeriesStyle.FallingFill Property

maui-devexpress-dot-maui-dot-charts-dot-candlestickseriesstyle-e5b735ee.md

latest2.1 KB
Original Source

CandleStickSeriesStyle.FallingFill Property

Gets or sets the fill color of a candlestick that shows a fall in a price. This is a bindable property.

Namespace : DevExpress.Maui.Charts

Assembly : DevExpress.Maui.Charts.dll

NuGet Package : DevExpress.Maui.Charts

Declaration

csharp
public Color FallingFill { get; set; }

Property Value

TypeDescription
Color

The fill color of a candlestick that shows a fall in a price.

|

Example

To change the candlestick series appearance, set the CandleStickSeries.Style property to the CandleStickSeriesStyle object, and use this object’s properties that specify colors (RisingStroke/RisingFill and FallingStroke/FallingFill) and thickness (StrokeThickness) of data point markers (candlesticks).

xml
<dxc:CandleStickSeries>
    <dxc:CandleStickSeries.Style>
        <dxc:CandleStickSeriesStyle RisingStroke="#1f201e" RisingFill="#474946"
                                    FallingStroke="#e63833" FallingFill="#ff6c60"
                                    StrokeThickness="2"/>
    </dxc:CandleStickSeries.Style>
    <!--Series Data-->
</dxc:CandleStickSeries>

See Also

CandleStickSeriesStyle Class

CandleStickSeriesStyle Members

DevExpress.Maui.Charts Namespace