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

Represents a 3D chart control that uses a Cartesian Coordinate System to plot the associated data points.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
[TelerikToolboxCategory("Data Visualization")]
public class RadCartesianChart3D : Control

Inheritance: objectRadCartesianChart3D

Constructors

Initializes a new instance of the RadCartesianChart3D class.

C#
public RadCartesianChart3D()

Fields

CameraProperty

DependencyProperty

Identifies the Camera dependency property.

C#
public static readonly DependencyProperty CameraProperty

GridProperty

DependencyProperty

Identifies the Grid dependency property.

C#
public static readonly DependencyProperty GridProperty

PaletteProperty

DependencyProperty

Identifies the Palette dependency property.

C#
public static readonly DependencyProperty PaletteProperty

PlotAreaSizeProperty

DependencyProperty

Identifies the PlotAreaSize dependency property.

C#
public static readonly DependencyProperty PlotAreaSizeProperty

SeriesProviderProperty

DependencyProperty

Identifies the SeriesProvider dependency property.

C#
public static readonly DependencyProperty SeriesProviderProperty

TooltipTemplateProperty

DependencyProperty

Identifies the TooltipTemplate property.

C#
public static readonly DependencyProperty TooltipTemplateProperty

XAxisProperty

DependencyProperty

Identifies the XAxis dependency property.

C#
public static readonly DependencyProperty XAxisProperty

YAxisProperty

DependencyProperty

Identifies the YAxis dependency property.

C#
public static readonly DependencyProperty YAxisProperty

ZAxisProperty

DependencyProperty

Identifies the ZAxis dependency property.

C#
public static readonly DependencyProperty ZAxisProperty

Properties

Gets a collection of chart behaviors that handle user interaction.

C#
public Chart3DBehaviorCollection Behaviors { get; }

Camera

Camera

Gets or sets the camera that projects the 3D contents to the 2D surface.

C#
public Camera Camera { get; set; }

Gets or sets the CartesianChart3DGrid used to decorate the chart plot area with grid lines and strip lines.

C#
public CartesianChart3DGrid Grid { get; set; }

Get or sets a collection of object that represents lighting applied to the 3D scene.

C#
public ObservableCollection<Light> Lights { get; }

Palette

MaterialCollection

Gets or sets the material collection that will define the appearance of the series. The palette has a lower priority than the properties of the series.

C#
[TypeConverter(typeof(Chart3DPaletteConverter))]
public MaterialCollection Palette { get; set; }

Gets or sets a value indicating the size of the plot area. The plot area is the space locked between the axes, where the series are drawn.

C#
[TypeConverter(typeof(ChartSize3DConverter))]
public Size3D PlotAreaSize { get; set; }

Gets the collection containing all the series presented by this instance.

C#
public ObservableCollection<CartesianSeries3D> Series { get; }

Gets or sets an object that may be used to create chart series dynamically, depending on the underlying data.

C#
public ChartSeriesProvider3D SeriesProvider { get; set; }

TooltipTemplate

DataTemplate

Gets or sets the ContentTemplate of the tooltip that is shown by the Chart3DTooltipBehavior. This property has a lower priority than the TooltipTemplate property of the series.

C#
public DataTemplate TooltipTemplate { get; set; }

Gets or sets the visual axis instance that will be used to plot points along the X axis.

C#
public ChartAxis3D XAxis { get; set; }

Gets or sets the visual axis instance that will be used to plot points along the Y axis.

C#
public ChartAxis3D YAxis { get; set; }

Gets or sets the visual axis instance that will be used to plot points along the Z axis.

C#
public ChartAxis3D ZAxis { get; set; }

Methods

Provides the behavior for the Arrange pass of Silverlight layout. Classes can override this method to define their own Arrange pass behavior.

C#
protected override Size ArrangeOverride(Size arrangeBounds)
Parameters:arrangeBoundsSize

The final area within the parent that this object should use to arrange itself and its children.

Returns:

Size

The actual size that is used after the element is arranged in layout.

When overridden in a derived class, is invoked whenever application code or internal processes (such as a rebuilding layout pass) call . In simplest terms, this means the method is called just before a UI element displays in an application. For more information, see Remarks.

C#
public override void OnApplyTemplate()

Returns class-specific AutomationPeer implementations for the Windows Presentation Foundation (WPF) infrastructure.

C#
protected override AutomationPeer OnCreateAutomationPeer()
Returns:

AutomationPeer

The type-specific AutomationPeer implementation.

Invoked whenever the effective value of any dependency property on this System.Windows.FrameworkElement has been updated. The specific dependency property that changed is reported in the arguments parameter. Overrides System.Windows.DependencyObject.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs).

C#
protected override void OnPropertyChanged(DependencyPropertyChangedEventArgs e)
Parameters:eDependencyPropertyChangedEventArgs