ClassXyzSeries3D
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
XyzSeries3D()
Initializes a new instance of the XyzSeries3D class.
Declaration
protected XyzSeries3D()
Fields
DefaultVisualGeometryProperty
Identifies the DefaultVisualGeometry property.
Declaration
public static readonly DependencyProperty DefaultVisualGeometryProperty
Field Value
DependencyProperty
DefaultVisualGeometrySelectorProperty
Identifies the DefaultVisualGeometrySelector property.
Declaration
public static readonly DependencyProperty DefaultVisualGeometrySelectorProperty
Field Value
DependencyProperty
DefaultVisualMaterialProperty
Identifies the DefaultVisualMaterial property.
Declaration
public static readonly DependencyProperty DefaultVisualMaterialProperty
Field Value
DependencyProperty
DefaultVisualMaterialSelectorProperty
Identifies the DefaultVisualMaterialSelector property.
Declaration
public static readonly DependencyProperty DefaultVisualMaterialSelectorProperty
Field Value
DependencyProperty
XValueBindingProperty
Identifies the XValueBinding property.
Declaration
public static readonly DependencyProperty XValueBindingProperty
Field Value
DependencyProperty
YValueBindingProperty
Identifies the YValueBinding property.
Declaration
public static readonly DependencyProperty YValueBindingProperty
Field Value
DependencyProperty
ZValueBindingProperty
Identifies the ZValueBinding property.
Declaration
public static readonly DependencyProperty ZValueBindingProperty
Field Value
DependencyProperty
Properties
DefaultVisualGeometry
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.
Declaration
public Geometry3D DefaultVisualGeometry { get; set; }
Property Value
Geometry3D
DefaultVisualGeometrySelector
Gets or sets a geometry selector that provides a way to select a Geometry3D that will define the appearance of the datapoint default visual.
Declaration
public Geometry3DSelector DefaultVisualGeometrySelector { get; set; }
Property Value
DefaultVisualMaterial
Gets or sets the material that defines the appearance of the default visual that is used to visualize a datapoint.
Declaration
public Material DefaultVisualMaterial { get; set; }
Property Value
Material
DefaultVisualMaterialSelector
Gets or sets a material selector that provides a way to select a Material that will define the appearance of the datapoint default visual.
Declaration
public MaterialSelector DefaultVisualMaterialSelector { get; set; }
Property Value
XValueBinding
Gets or sets the binding that will be used to fill the XValue member of the contained data points.
Declaration
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding XValueBinding { get; set; }
Property Value
YValueBinding
Gets or sets the binding that will be used to fill the YValue member of the contained data points.
Declaration
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding YValueBinding { get; set; }
Property Value
ZValueBinding
Gets or sets the binding that will be used to fill the ZValue member of the contained data points.
Declaration
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding ZValueBinding { get; set; }
Property Value