Class RadCartesianChart
A chart that plots its data in a cartesian coordinate system.
Inherited Members
Namespace: Telerik.Maui.Controls.Compatibility.Chart
Assembly: Telerik.Maui.Controls.Compatibility.dll
Syntax
public class RadCartesianChart : RadChartBase, IView, IElement, ITransform, IParentElement
Constructors
RadCartesianChart()
Fields
GridProperty
Identifies the Grid property.
Declaration
public static readonly BindableProperty GridProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HorizontalAxisProperty
Identifies the HorizontalAxis property.
Declaration
public static readonly BindableProperty HorizontalAxisProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
VerticalAxisProperty
Identifies the VerticalAxis property.
Declaration
public static readonly BindableProperty VerticalAxisProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
Annotations
Gets the chart annotations collection.
Declaration
public ObservableCollection<CartesianChartAnnotation> Annotations { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<CartesianChartAnnotation>
|
Grid
Gets or sets the CartesianChartGrid used to decorate the chart plot area with major grid and strip lines.
Declaration
public CartesianChartGrid Grid { get; set; }
Property Value
CartesianChartGrid
|
HorizontalAxis
Gets or sets the visual Axis instance that will be used to plot points along the horizontal (X) axis.
Declaration
public CartesianAxis HorizontalAxis { get; set; }
Property Value
CartesianAxis
|
Series
Gets the series collection.
Declaration
public ObservableCollection<CartesianSeries> Series { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<CartesianSeries>
|
VerticalAxis
Gets or sets the visual Axis instance that will be used to plot points along the vertical (Y) axis.
Declaration
public CartesianAxis VerticalAxis { get; set; }
Property Value
CartesianAxis
|