New to Telerik UI for .NET MAUIStart a free 30-day trial

A chart that plots its data in a cartesian coordinate system.

Definition

Constructors

Initializes a new instance of the RadCartesianChart class.

C#
public RadCartesianChart()

Fields

GridProperty

BindableProperty

Identifies the Grid property.

C#
public static readonly BindableProperty GridProperty

HorizontalAxisProperty

BindableProperty

Identifies the HorizontalAxis property.

C#
public static readonly BindableProperty HorizontalAxisProperty

VerticalAxisProperty

BindableProperty

Identifies the VerticalAxis property.

C#
public static readonly BindableProperty VerticalAxisProperty

Properties

Gets the chart annotations collection.

C#
public ObservableCollection<CartesianChartAnnotation> Annotations { get; }

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

C#
public CartesianChartGrid Grid { get; set; }

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

C#
public CartesianAxis HorizontalAxis { get; set; }

Gets the series collection.

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

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

C#
public CartesianAxis VerticalAxis { get; set; }