PointSeries.Style Property
Gets or sets the series appearance settings.
Namespace: DevExpress.XamarinForms.Charts
Assembly: DevExpress.XamarinForms.Charts.dll
NuGet Package: DevExpress.XamarinForms.Charts
Declaration
public PointSeriesStyle Style { get; set; }
Property Value
Type | Description |
---|---|
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.
<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