SidePointMarker Class
Specifies settings for the marker of a side series point.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[TypeConverter(typeof(SidePointMarkerTypeConverter))]
public class SidePointMarker :
SidePoint
Remarks
You can specify how to display markers in series that support markers (for example, Lines or Points). To do this, cast XYDiagramSeriesViewBase.FirstPoint or LastPoint to the SidePointMarker type.
Use the SidePointMarker.MarkerDisplayMode property to specify a marker’s position.
Example
LineSeriesView seriesView = (LineSeriesView)chartControl1.Series[0].View;
SidePointMarker firstPointMarker = (SidePointMarker)seriesView.FirstPoint;
firstPointMarker.MarkerDisplayMode = SidePointDisplayMode.SeriesPoint;
Implements
Inheritance
Object
ChartElement
SidePoint
SidePointMarker
See Also