Skip to main content
All docs
V25.1
  • SidePointMarker Class

    Specifies settings for the marker of a side series point.

    Namespace: DevExpress.XtraCharts

    Assembly: DevExpress.XtraCharts.v25.1.dll

    NuGet Package: DevExpress.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