Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change. .

StockSeries.Style Property

Gets or sets the series appearance settings. This is a bindable property.

Namespace: DevExpress.Maui.Charts

Assembly: DevExpress.Maui.Charts.dll

NuGet Package: DevExpress.Maui.Charts

Declaration

public StockSeriesStyle Style { get; set; }

Property Value

Type Description
StockSeriesStyle

An object that stores the stock series appearance settings.

Example

To change the stock series appearance, set the StockSeries.Style property to the StockSeriesStyle object, and use this object’s RisingStroke/FallingStroke and StrokeThickness properties that specify colors and thickness of data point markers.

Stock Series Appearance

<dxc:StockSeries>
    <dxc:StockSeries.Style>
        <dxc:StockSeriesStyle RisingStroke="#1f211f" FallingStroke="#e63833" StrokeThickness="2"/>
    </dxc:StockSeries.Style>
    <!--Series Data-->
</dxc:StockSeries>
See Also