Back to Devexpress

PointSeriesStyle Class

mobilecontrols-devexpress-dot-xamarinforms-dot-charts-d214c7c4.md

latest2.2 KB
Original Source

PointSeriesStyle Class

Stores point series appearance settings.

Namespace : DevExpress.XamarinForms.Charts

Assembly : DevExpress.XamarinForms.Charts.dll

NuGet Package : DevExpress.XamarinForms.Charts

Declaration

csharp
public class PointSeriesStyle :
    StyleBase

The following members return PointSeriesStyle objects:

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>

Implements

INotifyPropertyChanged

Inheritance

Object ChartElement StyleBase PointSeriesStyle LineSeriesStyle

AreaSeriesStyle

See Also

PointSeriesStyle Members

DevExpress.XamarinForms.Charts Namespace