MovingAverageConvergenceDivergenceIndicatorStyle.SignalStrokeThickness Property
Gets or sets the thickness of the indicator’s signal line. This is a bindable property.
Namespace: DevExpress.Maui.Charts
Assembly: DevExpress.Maui.Charts.dll
NuGet Package: DevExpress.Maui.Charts
Declaration
public float SignalStrokeThickness { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Single | -1 | The line thickness. |
Example
To change the line appearance of the MACD indicator, set its Style property to the MovingAverageConvergenceDivergenceIndicatorStyle object with the specified settings.
<dxc:MovingAverageConvergenceDivergenceIndicator>
<dxc:MovingAverageConvergenceDivergenceIndicator.Style>
<dxc:MovingAverageConvergenceDivergenceIndicatorStyle Stroke="#e95ddc" StrokeThickness="2"
SignalStroke="DarkGray" SignalStrokeThickness="1" />
</dxc:MovingAverageConvergenceDivergenceIndicator.Style>
<!--Indicator Data-->
</dxc:MovingAverageConvergenceDivergenceIndicator>
See Also