XyzSeries3D
Represents a 3D chart series which points have a single x-y-z position.
Definition
Namespace:Telerik.Windows.Controls.ChartView
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
public abstract class XyzSeries3D : CartesianSeries3D
Inheritance: objectCartesianSeries3DXyzSeries3D
Derived Classes:
Inherited Members
Constructors
Initializes a new instance of the XyzSeries3D class.
protected XyzSeries3D()
Fields
DefaultVisualGeometryProperty
DependencyProperty
Identifies the DefaultVisualGeometry property.
public static readonly DependencyProperty DefaultVisualGeometryProperty
DefaultVisualGeometrySelectorProperty
DependencyProperty
Identifies the DefaultVisualGeometrySelector property.
public static readonly DependencyProperty DefaultVisualGeometrySelectorProperty
DefaultVisualMaterialProperty
DependencyProperty
Identifies the DefaultVisualMaterial property.
public static readonly DependencyProperty DefaultVisualMaterialProperty
DefaultVisualMaterialSelectorProperty
DependencyProperty
Identifies the DefaultVisualMaterialSelector property.
public static readonly DependencyProperty DefaultVisualMaterialSelectorProperty
XValueBindingProperty
DependencyProperty
Identifies the XValueBinding property.
public static readonly DependencyProperty XValueBindingProperty
YValueBindingProperty
DependencyProperty
Identifies the YValueBinding property.
public static readonly DependencyProperty YValueBindingProperty
ZValueBindingProperty
DependencyProperty
Identifies the ZValueBinding property.
public static readonly DependencyProperty ZValueBindingProperty
Properties
DefaultVisualGeometry
Geometry3D
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.
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.
public Geometry3DSelector DefaultVisualGeometrySelector { get; set; }
DefaultVisualMaterial
Material
Gets or sets the material that defines the appearance of the default visual that is used to visualize a datapoint.
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.
public MaterialSelector DefaultVisualMaterialSelector { get; set; }
Gets or sets the binding that will be used to fill the XValue member of the contained data points.
[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.
[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.
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding ZValueBinding { get; set; }