Class RadCartesianChart3D
Represents a 3D chart control that uses a Cartesian Coordinate System to plot the associated data points.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
[TelerikToolboxCategory("Data Visualization")]
public class RadCartesianChart3D : Control, IModelOwner3D
Constructors
RadCartesianChart3D()
Initializes a new instance of the RadCartesianChart3D class.
Declaration
public RadCartesianChart3D()
Fields
CameraProperty
Identifies the Camera dependency property.
Declaration
public static readonly DependencyProperty CameraProperty
Field Value
System.Windows.DependencyProperty
|
GridProperty
Identifies the Grid dependency property.
Declaration
public static readonly DependencyProperty GridProperty
Field Value
System.Windows.DependencyProperty
|
PaletteProperty
Identifies the Palette dependency property.
Declaration
public static readonly DependencyProperty PaletteProperty
Field Value
System.Windows.DependencyProperty
|
PlotAreaSizeProperty
Identifies the PlotAreaSize dependency property.
Declaration
public static readonly DependencyProperty PlotAreaSizeProperty
Field Value
System.Windows.DependencyProperty
|
SeriesProviderProperty
Identifies the SeriesProvider dependency property.
Declaration
public static readonly DependencyProperty SeriesProviderProperty
Field Value
System.Windows.DependencyProperty
|
TooltipTemplateProperty
Identifies the TooltipTemplate property.
Declaration
public static readonly DependencyProperty TooltipTemplateProperty
Field Value
System.Windows.DependencyProperty
|
XAxisProperty
Identifies the XAxis dependency property.
Declaration
public static readonly DependencyProperty XAxisProperty
Field Value
System.Windows.DependencyProperty
|
YAxisProperty
Identifies the YAxis dependency property.
Declaration
public static readonly DependencyProperty YAxisProperty
Field Value
System.Windows.DependencyProperty
|
ZAxisProperty
Identifies the ZAxis dependency property.
Declaration
public static readonly DependencyProperty ZAxisProperty
Field Value
System.Windows.DependencyProperty
|
Properties
Behaviors
Gets a collection of chart behaviors that handle user interaction.
Declaration
public Chart3DBehaviorCollection Behaviors { get; }
Property Value
Chart3DBehaviorCollection
|
Camera
Gets or sets the camera that projects the 3D contents to the 2D surface.
Declaration
public Camera Camera { get; set; }
Property Value
System.Windows.Media.Media3D.Camera
|
Grid
Gets or sets the CartesianChart3DGrid used to decorate the chart plot area with grid lines and strip lines.
Declaration
public CartesianChart3DGrid Grid { get; set; }
Property Value
CartesianChart3DGrid
|
Lights
Get or sets a collection of object that represents lighting applied to the 3D scene.
Declaration
public ObservableCollection<Light> Lights { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<System.Windows.Media.Media3D.Light>
|
Palette
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.
Declaration
public MaterialCollection Palette { get; set; }
Property Value
System.Windows.Media.Media3D.MaterialCollection
|
PlotAreaSize
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.
Declaration
public Size3D PlotAreaSize { get; set; }
Property Value
System.Windows.Media.Media3D.Size3D
|
Series
Gets the collection containing all the series presented by this instance.
Declaration
public ObservableCollection<CartesianSeries3D> Series { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<CartesianSeries3D>
|
SeriesProvider
Gets or sets an object that may be used to create chart series dynamically, depending on the underlying data.
Declaration
public ChartSeriesProvider3D SeriesProvider { get; set; }
Property Value
ChartSeriesProvider3D
|
TooltipTemplate
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.
Declaration
public DataTemplate TooltipTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
XAxis
Gets or sets the visual axis instance that will be used to plot points along the X axis.
Declaration
public ChartAxis3D XAxis { get; set; }
Property Value
ChartAxis3D
|
YAxis
Gets or sets the visual axis instance that will be used to plot points along the Y axis.
Declaration
public ChartAxis3D YAxis { get; set; }
Property Value
ChartAxis3D
|
ZAxis
Gets or sets the visual axis instance that will be used to plot points along the Z axis.
Declaration
public ChartAxis3D ZAxis { get; set; }
Property Value
ChartAxis3D
|
Methods
ArrangeOverride(Size)
Provides the behavior for the Arrange pass of Silverlight layout. Classes can override this method to define their own Arrange pass behavior.
Declaration
protected override Size ArrangeOverride(Size arrangeBounds)
Parameters
System.Windows.Size
arrangeBounds
The final area within the parent that this object should use to arrange itself and its children. |
Returns
System.Windows.Size
The actual size that is used after the element is arranged in layout. |
OnApplyTemplate()
When overridden in a derived class, is invoked whenever application code or internal processes (such as a rebuilding layout pass) call System.Windows.Controls.Control.ApplyTemplate. In simplest terms, this means the method is called just before a UI element displays in an application. For more information, see Remarks.
Declaration
public override void OnApplyTemplate()
OnCreateAutomationPeer()
Returns class-specific System.Windows.Automation.Peers.AutomationPeer implementations for the Windows Presentation Foundation (WPF) infrastructure.
Declaration
protected override AutomationPeer OnCreateAutomationPeer()
Returns
System.Windows.Automation.Peers.AutomationPeer
The type-specific System.Windows.Automation.Peers.AutomationPeer implementation. |
OnPropertyChanged(DependencyPropertyChangedEventArgs)
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).
Declaration
protected override void OnPropertyChanged(DependencyPropertyChangedEventArgs e)
Parameters
System.Windows.DependencyPropertyChangedEventArgs
e
|