Skip to main content
A newer version of this page is available. .

SidePointMarker Class

Specifies settings for the marker of a side series point.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v20.2.dll

NuGet Packages: DevExpress.Charts, DevExpress.WindowsDesktop.Charts

Declaration

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

See Also