MovingAverageConvergenceDivergenceIndicatorStyle.SignalStroke Property
Gets or sets the color 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 Color SignalStroke { get; set; }
Property Value
Type | Description |
---|---|
Color | The color of the indicator’s signal line. |
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