RadCartesianChart3D
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:
[TelerikToolboxCategory("Data Visualization")]
public class RadCartesianChart3D : Control
Inheritance: objectRadCartesianChart3D
Constructors
Initializes a new instance of the RadCartesianChart3D class.
public RadCartesianChart3D()
Fields
CameraProperty
DependencyProperty
Identifies the Camera dependency property.
public static readonly DependencyProperty CameraProperty
GridProperty
DependencyProperty
Identifies the Grid dependency property.
public static readonly DependencyProperty GridProperty
PaletteProperty
DependencyProperty
Identifies the Palette dependency property.
public static readonly DependencyProperty PaletteProperty
PlotAreaSizeProperty
DependencyProperty
Identifies the PlotAreaSize dependency property.
public static readonly DependencyProperty PlotAreaSizeProperty
SeriesProviderProperty
DependencyProperty
Identifies the SeriesProvider dependency property.
public static readonly DependencyProperty SeriesProviderProperty
TooltipTemplateProperty
DependencyProperty
Identifies the TooltipTemplate property.
public static readonly DependencyProperty TooltipTemplateProperty
XAxisProperty
DependencyProperty
Identifies the XAxis dependency property.
public static readonly DependencyProperty XAxisProperty
YAxisProperty
DependencyProperty
Identifies the YAxis dependency property.
public static readonly DependencyProperty YAxisProperty
ZAxisProperty
DependencyProperty
Identifies the ZAxis dependency property.
public static readonly DependencyProperty ZAxisProperty
Properties
Gets a collection of chart behaviors that handle user interaction.
public Chart3DBehaviorCollection Behaviors { get; }
Camera
Camera
Gets or sets the camera that projects the 3D contents to the 2D surface.
public Camera Camera { get; set; }
Gets or sets the CartesianChart3DGrid used to decorate the chart plot area with grid lines and strip lines.
public CartesianChart3DGrid Grid { get; set; }
Lights
ObservableCollection<Light>
Get or sets a collection of object that represents lighting applied to the 3D scene.
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.
[TypeConverter(typeof(Chart3DPaletteConverter))]
public MaterialCollection Palette { get; set; }
PlotAreaSize
Size3D
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.
[TypeConverter(typeof(ChartSize3DConverter))]
public Size3D PlotAreaSize { get; set; }
Gets the collection containing all the series presented by this instance.
public ObservableCollection<CartesianSeries3D> Series { get; }
Gets or sets an object that may be used to create chart series dynamically, depending on the underlying data.
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.
public DataTemplate TooltipTemplate { get; set; }
Gets or sets the visual axis instance that will be used to plot points along the X axis.
public ChartAxis3D XAxis { get; set; }
Gets or sets the visual axis instance that will be used to plot points along the Y axis.
public ChartAxis3D YAxis { get; set; }
Gets or sets the visual axis instance that will be used to plot points along the Z axis.
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.
protected override Size ArrangeOverride(Size arrangeBounds)
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.
public override void OnApplyTemplate()
OnCreateAutomationPeer()
AutomationPeer
Returns class-specific AutomationPeer implementations for the Windows Presentation Foundation (WPF) infrastructure.
protected override AutomationPeer OnCreateAutomationPeer()
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).
protected override void OnPropertyChanged(DependencyPropertyChangedEventArgs e)