Skip to main content
A newer version of this page is available. .

PointSeriesStyle.MarkerStyle Property

Gets or sets appearance settings of point markers.

Namespace: DevExpress.XamarinForms.Charts

Assembly: DevExpress.XamarinForms.Charts.dll

NuGet Package: DevExpress.XamarinForms.Charts

Declaration

public MarkerStyle MarkerStyle { get; set; }

Property Value

Type Description
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.

Point Series Appearance

<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