Back to Devexpress

PointSeriesStyle.MarkerStyle Property

maui-devexpress-dot-maui-dot-charts-dot-pointseriesstyle-9329c389.md

latest1.7 KB
Original Source

PointSeriesStyle.MarkerStyle Property

Gets or sets appearance settings of point markers. This is a bindable property.

Namespace : DevExpress.Maui.Charts

Assembly : DevExpress.Maui.Charts.dll

NuGet Package : DevExpress.Maui.Charts

Declaration

csharp
public MarkerStyle MarkerStyle { get; set; }

Property Value

TypeDescription
MarkerStyle

An object that stores appearance settings of point markers.

|

Example

To configure the point series appearance, set the PointSeries.Style property to the PointSeriesStyle object. This object’s MarkerSize and MarkerStyle properties allow you to change the size and color of point markers.

xml
<dxc:PointSeries>
    <dxc:PointSeries.Style>
        <dxc:PointSeriesStyle MarkerSize="12">
            <dxc:PointSeriesStyle.MarkerStyle>
                <dxc:MarkerStyle Fill="LightBlue"/>
            </dxc:PointSeriesStyle.MarkerStyle>
        </dxc:PointSeriesStyle>
    </dxc:PointSeries.Style>
</dxc:PointSeries>

See Also

PointSeriesStyle Class

PointSeriesStyle Members

DevExpress.Maui.Charts Namespace