New to Telerik UI for WPFStart a free 30-day trial

Represents a 3D chart series which points have a single x-y-z position.

Definition

Constructors

Initializes a new instance of the XyzSeries3D class.

C#
protected XyzSeries3D()

Fields

Identifies the DefaultVisualGeometry property.

C#
public static readonly DependencyProperty DefaultVisualGeometryProperty

Identifies the DefaultVisualGeometrySelector property.

C#
public static readonly DependencyProperty DefaultVisualGeometrySelectorProperty

Identifies the DefaultVisualMaterial property.

C#
public static readonly DependencyProperty DefaultVisualMaterialProperty

Identifies the DefaultVisualMaterialSelector property.

C#
public static readonly DependencyProperty DefaultVisualMaterialSelectorProperty

XValueBindingProperty

DependencyProperty

Identifies the XValueBinding property.

C#
public static readonly DependencyProperty XValueBindingProperty

YValueBindingProperty

DependencyProperty

Identifies the YValueBinding property.

C#
public static readonly DependencyProperty YValueBindingProperty

ZValueBindingProperty

DependencyProperty

Identifies the ZValueBinding property.

C#
public static readonly DependencyProperty ZValueBindingProperty

Properties

Gets or sets the default Geometry3D (normalized) instance that is used for creating data point visuals. The size of the geometry needs to be normalized between 0 and 1 so that later Visual3D transformations can work properly.

C#
public Geometry3D DefaultVisualGeometry { get; set; }

Gets or sets a geometry selector that provides a way to select a Geometry3D that will define the appearance of the datapoint default visual.

C#
public Geometry3DSelector DefaultVisualGeometrySelector { get; set; }

Gets or sets the material that defines the appearance of the default visual that is used to visualize a datapoint.

C#
public Material DefaultVisualMaterial { get; set; }

Gets or sets a material selector that provides a way to select a Material that will define the appearance of the datapoint default visual.

C#
public MaterialSelector DefaultVisualMaterialSelector { get; set; }

Gets or sets the binding that will be used to fill the XValue member of the contained data points.

C#
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding XValueBinding { get; set; }

Gets or sets the binding that will be used to fill the YValue member of the contained data points.

C#
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding YValueBinding { get; set; }

Gets or sets the binding that will be used to fill the ZValue member of the contained data points.

C#
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding ZValueBinding { get; set; }