corelibraries-devexpress-dot-xtracharts-04586273.md
Specifies settings for the marker of a side series point.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
public class SidePointMarker :
SidePoint
Public Class SidePointMarker
Inherits SidePoint
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.
LineSeriesView seriesView = (LineSeriesView)chartControl1.Series[0].View;
SidePointMarker firstPointMarker = (SidePointMarker)seriesView.FirstPoint;
firstPointMarker.MarkerDisplayMode = SidePointDisplayMode.SeriesPoint;
Dim seriesView As LineSeriesView = CType(chartControl1.Series(0).View, LineSeriesView)
Dim firstPointMarker As SidePointMarker = CType(seriesView.FirstPoint, SidePointMarker)
firstPointMarker.MarkerDisplayMode = SidePointDisplayMode.SeriesPoint
Object ChartElement SidePoint SidePointMarker
See Also