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

Marker2DModel Class

A base class for standard and custom point marker models, which are used in 2D series with markers.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v18.2.dll

Declaration

public abstract class Marker2DModel :
    PointModel

Remarks

The Marker2DModel class implements the basic functionality for all marker models related to 2D series with markers (MarkerSeries2D class descendants).

Since the Marker2DModel class is abstract, you can’t create an instance of it directly. Instead, assign one of its descendants to the MarkerModel property of a series.

  • To apply a pre-defined 2D marker model to a series, use the corresponding descendant of the PredefinedMarker2DModel class.
  • To provide a custom 2D marker model, create an instance of the CustomMarker2DModel class, and customize its properties.
See Also