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

Represents a 3D chart series that plots its points using a line.

Definition

Constructors

C#
public LineSeries3D()

Fields

Identifies the DefaultLineVisualDiameter property.

C#
public static readonly DependencyProperty DefaultLineVisualDiameterProperty

Identifies the DefaultLineVisualGeometry property.

C#
public static readonly DependencyProperty DefaultLineVisualGeometryProperty

Identifies the DefaultLineVisualGeometrySelector property.

C#
public static readonly DependencyProperty DefaultLineVisualGeometrySelectorProperty

Identifies the DefaultLineVisualMaterial property.

C#
public static readonly DependencyProperty DefaultLineVisualMaterialProperty

Identifies the DefaultLineVisualMaterialSelector property.

C#
public static readonly DependencyProperty DefaultLineVisualMaterialSelectorProperty

Properties

Gets or sets a value that defines the size (diameter) of the default line visual.

C#
public double DefaultLineVisualDiameter { get; set; }

Gets or sets the default Geometry3D (normalized) instance that is used for creating the default line visual. The size of the geometry needs to be normalized (between 0 and 1) so that later Visual3D transformations can work properly. The line rendering approach changes when the property is set.

C#
public Geometry3D DefaultLineVisualGeometry { get; set; }

Gets or sets a geometry selector that provides a way to select a Geometry3D that will define the appearance of the default line visual. The line rendering approach changes when the property is set.

C#
public Geometry3DSelector DefaultLineVisualGeometrySelector { get; set; }

Gets or sets the material that defines the appearance of the default line visual that is used to visualize the data points.

C#
public Material DefaultLineVisualMaterial { get; set; }

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

C#
public MaterialSelector DefaultLineVisualMaterialSelector { get; set; }