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

RateOfChangeIndicator.Style Property

Gets or sets the indicator’s line appearance settings. This is a bindable property.

Namespace: DevExpress.Maui.Charts

Assembly: DevExpress.Maui.Charts.dll

NuGet Package: DevExpress.Maui.Charts

Declaration

public LineIndicatorStyle Style { get; set; }

Property Value

Type Description
LineIndicatorStyle

An object that stores line appearance settings.

Example

To change the indicator line appearance, set the RateOfChangeIndicator.Style property to the LineIndicatorStyle object with the specified Stroke and StrokeThickness properties.

<dxc:RateOfChangeIndicator>
    <dxc:RateOfChangeIndicator.Style>
        <dxc:LineIndicatorStyle Stroke="#e95ddc" StrokeThickness="2"/>
    </dxc:RateOfChangeIndicator.Style>

    <!--Indicator Data-->
</dxc:RateOfChangeIndicator>
See Also