Back to Devexpress

MarkerStyle.StrokeThickness Property

maui-devexpress-dot-maui-dot-charts-dot-markerstyle-271be0de.md

latest2.1 KB
Original Source

MarkerStyle.StrokeThickness Property

Gets or sets the point marker stroke thickness. This is a bindable property.

Namespace : DevExpress.Maui.Charts

Assembly : DevExpress.Maui.Charts.dll

NuGet Package : DevExpress.Maui.Charts

Declaration

csharp
public float StrokeThickness { get; set; }

Property Value

TypeDefaultDescription
Single-1

The thickness of a point marker stroke, in scale-independent units.

|

Remarks

To specify the stroke color, use the Stroke property.

The resulting stroke thickness can differ on different Android devices. On Android emulators, the stroke thickness is always 1 due to technical limitations.

Example

This example customizes the color and stroke of point markers for the Point series.

  1. Assign the PointSeriesStyle object to the PointSeries.Style property.
  2. Set the PointSeriesStyle.MarkerStyle to the MarkerStyle object and use this object’s properties to specify the appearance settings of point markers.

xml
<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

MarkerStyle Class

MarkerStyle Members

DevExpress.Maui.Charts Namespace