Class
XyzSeries3DDescriptor

Represents a concrete XyzSeries3DDescriptor that may be used to create all the XYZ chart series variations.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

cs-api-definition
public class XyzSeries3DDescriptor : ChartSeriesDescriptor3D

Inheritance: objectChartSeriesDescriptor3DXyzSeries3DDescriptor

Inherited Members ChartSeriesDescriptor3D.StylePropertyChartSeriesDescriptor3D.ItemsSourcePathPropertyChartSeriesDescriptor3D.TypePathPropertyChartSeriesDescriptor3D.TypeConverterPropertyChartSeriesDescriptor3D.CollectionIndexPropertyChartSeriesDescriptor3D.ChartDataSourceStylePropertyChartSeriesDescriptor3D.CreateInstance(object)ChartSeriesDescriptor3D.CreateDefaultInstance(object)ChartSeriesDescriptor3D.TypePathChartSeriesDescriptor3D.TypeConverterChartSeriesDescriptor3D.StyleChartSeriesDescriptor3D.ItemsSourcePathChartSeriesDescriptor3D.CollectionIndexChartSeriesDescriptor3D.ChartDataSourceStyle

Constructors

XyzSeries3DDescriptor()

Declaration

cs-api-definition
public XyzSeries3DDescriptor()

Fields

XValuePathProperty

Identifies the XValuePath dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty XValuePathProperty

Field Value

DependencyProperty

YValuePathProperty

Identifies the YValuePath dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty YValuePathProperty

Field Value

DependencyProperty

ZValuePathProperty

Identifies the ZValuePath dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty ZValuePathProperty

Field Value

DependencyProperty

Properties

DefaultType

Gets the default type of series that are to be created if no TypePath and no Style properties are specified.

Declaration

cs-api-definition
public override Type DefaultType { get; }

Property Value

Type

Overrides ChartSeriesDescriptor3D.DefaultType

XValuePath

Gets or sets the name of the property that points to the XValue value of the data point view model.

Declaration

cs-api-definition
public string XValuePath { get; set; }

Property Value

string

YValuePath

Gets or sets the name of the property that points to the YValue value of the data point view model.

Declaration

cs-api-definition
public string YValuePath { get; set; }

Property Value

string

ZValuePath

Gets or sets the name of the property that points to the ZValue value of the data point view model.

Declaration

cs-api-definition
public string ZValuePath { get; set; }

Property Value

string

Methods

CreateInstanceCore(object)

Core entry point for creating the CartesianSeries3D type defined by this descriptor. Allows inheritors to provide custom implementation.

Declaration

cs-api-definition
protected override CartesianSeries3D CreateInstanceCore(object context)

Parameters

context

object

The context (this is the raw data collection or the data view model) for which a CartesianSeries3D needs to be created.

Returns

CartesianSeries3D

Exceptions

InvalidOperationException

The base implementation fails to create a valid XyzSeries3D instance.

Overrides ChartSeriesDescriptor3D.CreateInstanceCore(object)