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

Bar3DModel Class

Represents a base class for standard and custom 3D Bar models.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v20.1.dll

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

Declaration

public abstract class Bar3DModel :
    DependencyObject,
    IChartElement,
    IOwnedElement,
    INotificationOwner,
    ICloneable,
    IBindingPropertiesSource

The following members return Bar3DModel objects:

Remarks

The Bar3DModel class implements the basic functionality for both the pre-defined and custom 3D Bar models.

Since the Bar3DModel class is abstract, you can’t create an instance of it directly. Instead, assign one of its descendants to the BarSeries3D.Model property.

  • To apply a pre-defined 3D Bar model in your chart, use the corresponding descendant of the PredefinedBar3DModel class.
  • To provide a custom 3D Bar model, create an instance of the CustomBar3DModel class, and customize its properties.
See Also