maui-devexpress-dot-maui-dot-charts-dot-markerstyle-b0acac6a.md
Gets or sets the point marker stroke color. This is a bindable property.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public Color Stroke { get; set; }
| Type | Description |
|---|---|
| Color |
The point marker stroke color.
|
To specify the stroke thickness, use the StrokeThickness property.
This example customizes the color and stroke of point markers for the Point series.
<dxc:PointSeries>
<dxc:PointSeries.Style>
<dxc:PointSeriesStyle>
<dxc:PointSeriesStyle.MarkerStyle>
<dxc:MarkerStyle Fill="LightBlue" Stroke="Blue" StrokeThickness="2"/>
</dxc:PointSeriesStyle.MarkerStyle>
</dxc:PointSeriesStyle>
</dxc:PointSeries.Style>
</dxc:PointSeries>
See Also