MovingAverageIndicator.Style Property
In This Article
Gets or sets the indicator’s line appearance settings.
Namespace: DevExpress.XamarinForms.Charts
Assembly: DevExpress.XamarinForms.Charts.dll
NuGet Package: DevExpress.XamarinForms.Charts
#Declaration
C#
public LineIndicatorStyle Style { get; set; }
#Property Value
Type | Description |
---|---|
Line |
An object that stores line appearance settings. |
#Example
To change the indicator line appearance, set the MovingAverageIndicator.Style
property to the LineIndicatorStyle object with the specified Stroke and StrokeThickness properties.
<dxc:MovingAverageIndicator>
<dxc:MovingAverageIndicator.Style>
<dxc:LineIndicatorStyle Stroke="#9859c9"/>
</dxc:MovingAverageIndicator.Style>
<!--Indicator Data-->
</dxc:MovingAverageIndicator>
See Also