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

Marker3DModel Class

Represents a base class for standard and custom point marker models, which are used in 3D series with markers.

Namespace: DevExpress.Xpf.Charts

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

Declaration

public abstract class Marker3DModel :
    ModelBase

The following members return Marker3DModel objects:

Remarks

The Marker3DModel class implements the basic functionality for all marker models related to 3D series with markers (MarkerSeries3D class descendants).

Since the Marker3DModel 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 3D marker model to a series, use the corresponding descendant of the PredefinedMarker3DModel class.
  • To provide a custom 3D marker model, create an instance of the CustomMarker3DModel class, and customize its properties.
See Also