Back to Devexpress

PointSeries.Style Property

maui-devexpress-dot-maui-dot-charts-dot-pointseries-8a81d013.md

latest1.6 KB
Original Source

PointSeries.Style Property

Gets or sets the series appearance settings. This is a bindable property.

Namespace : DevExpress.Maui.Charts

Assembly : DevExpress.Maui.Charts.dll

NuGet Package : DevExpress.Maui.Charts

Declaration

csharp
public PointSeriesStyle Style { get; set; }

Property Value

TypeDescription
PointSeriesStyle

An object that stores the point series appearance settings.

|

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

PointSeries Class

PointSeries Members

DevExpress.Maui.Charts Namespace