MarkerStyle Class
Namespace: DevExpress.Maui.Charts
Assembly: DevExpress.Maui.Charts.dll
NuGet Package: DevExpress.Maui.Charts
Declaration
public class MarkerStyle :
StyleBase
Related API Members
The following members return MarkerStyle objects:
Example
This example customizes the color and stroke of point markers for the Point series.
- Assign the PointSeriesStyle object to the PointSeries.Style property.
- Set the PointSeriesStyle.MarkerStyle to the
MarkerStyle
object and use this object’s properties to specify the appearance settings of point markers.
<dxc:PointSeries>
<dxc:PointSeries.Style>
<dxc:PointSeriesStyle>
<dxc:PointSeriesStyle.MarkerStyle>
<dxc:MarkerStyle Fill="LightBlue" Stroke="Blue" StrokeThickness="2"/>
</dxc:PointSeriesStyle.MarkerStyle>
</dxc:PointSeriesStyle>
</dxc:PointSeries.Style>
</dxc:PointSeries>
Inheritance
Object
BindableObject
Element
DevExpress.Maui.Core.Internal.DXElementBaseCore
ChartElement
StyleBase
MarkerStyle
See Also