StockSeriesStyle.RisingStroke Property
Gets or sets the color of a data point that shows a rise in a price.
Namespace: DevExpress.XamarinForms.Charts
Assembly: DevExpress.XamarinForms.Charts.dll
NuGet Package: DevExpress.XamarinForms.Charts
Declaration
public Color RisingStroke { get; set; }
Property Value
Type | Description |
---|---|
Color | The point color. |
Example
To change the stock series appearance, set the StockSeries.Style property to the StockSeriesStyle object, and use this object’s RisingStroke
/FallingStroke and StrokeThickness properties that specify colors and thickness of data point markers.
<dxc:StockSeries>
<dxc:StockSeries.Style>
<dxc:StockSeriesStyle RisingStroke="#1f211f" FallingStroke="#e63833" StrokeThickness="2"/>
</dxc:StockSeries.Style>
<!--Series Data-->
</dxc:StockSeries>
See Also