Class
XyzSeries3D

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

Definition

Constructors

XyzSeries3D()

Initializes a new instance of the XyzSeries3D class.

Declaration

cs-api-definition
protected XyzSeries3D()

Fields

DefaultVisualGeometryProperty

Identifies the DefaultVisualGeometry property.

Declaration

cs-api-definition
public static readonly DependencyProperty DefaultVisualGeometryProperty

Field Value

DependencyProperty

DefaultVisualGeometrySelectorProperty

Identifies the DefaultVisualGeometrySelector property.

Declaration

cs-api-definition
public static readonly DependencyProperty DefaultVisualGeometrySelectorProperty

Field Value

DependencyProperty

DefaultVisualMaterialProperty

Identifies the DefaultVisualMaterial property.

Declaration

cs-api-definition
public static readonly DependencyProperty DefaultVisualMaterialProperty

Field Value

DependencyProperty

DefaultVisualMaterialSelectorProperty

Identifies the DefaultVisualMaterialSelector property.

Declaration

cs-api-definition
public static readonly DependencyProperty DefaultVisualMaterialSelectorProperty

Field Value

DependencyProperty

XValueBindingProperty

Identifies the XValueBinding property.

Declaration

cs-api-definition
public static readonly DependencyProperty XValueBindingProperty

Field Value

DependencyProperty

YValueBindingProperty

Identifies the YValueBinding property.

Declaration

cs-api-definition
public static readonly DependencyProperty YValueBindingProperty

Field Value

DependencyProperty

ZValueBindingProperty

Identifies the ZValueBinding property.

Declaration

cs-api-definition
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

cs-api-definition
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

cs-api-definition
public Geometry3DSelector DefaultVisualGeometrySelector { get; set; }

Property Value

Geometry3DSelector

DefaultVisualMaterial

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

Declaration

cs-api-definition
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

cs-api-definition
public MaterialSelector DefaultVisualMaterialSelector { get; set; }

Property Value

MaterialSelector

XValueBinding

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

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding XValueBinding { get; set; }

Property Value

DataPointBinding

YValueBinding

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

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding YValueBinding { get; set; }

Property Value

DataPointBinding

ZValueBinding

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

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding ZValueBinding { get; set; }

Property Value

DataPointBinding