Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.Wpf.Charts

#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