StandardDeviationIndicator.Style Property
In This Article
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
C#
public LineIndicatorStyle Style { get; set; }
#Property Value
Type | Description |
---|---|
Line |
An object that stores line appearance settings. |
#Example
To change the standard deviation indicator line appearance, set the StandardDeviationIndicator.Style
property to the LineIndicatorStyle object with the specified Stroke and StrokeThickness properties.
<dxc:StandardDeviationIndicator>
<dxc:StandardDeviationIndicator.Style>
<dxc:LineIndicatorStyle Stroke="#e95ddc" StrokeThickness="2"/>
</dxc:StandardDeviationIndicator.Style>
<!--Indicator Data-->
</dxc:StandardDeviationIndicator>
See Also