Skip to main content

RelativeStrengthIndexIndicator.Style Property

Gets or sets the indicator’s line appearance settings.

Namespace: DevExpress.XamarinForms.Charts

Assembly: DevExpress.XamarinForms.Charts.dll

NuGet Package: DevExpress.XamarinForms.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 RelativeStrengthIndexIndicator.Style property to the LineIndicatorStyle object with the specified Stroke and StrokeThickness properties.

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

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