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

Represents the abstract base class for chart series that plot data against a pair of perpendicular (horizontal and vertical) axes, such as LineSeries, BarSeries, AreaSeries, and PointSeries.

Definition

Constructors

C#
protected CartesianSeries()

Fields

HorizontalAxisProperty

BindableProperty

Identifies the HorizontalAxis bindable property.

C#
public static readonly BindableProperty HorizontalAxisProperty

Identifies the HorizontalBinding bindable property.

C#
public static readonly BindableProperty HorizontalBindingProperty

LabelOffsetProperty

BindableProperty

Identifies the LabelOffset bindable property.

C#
public static readonly BindableProperty LabelOffsetProperty

VerticalAxisProperty

BindableProperty

Identifies the VerticalAxis bindable property.

C#
public static readonly BindableProperty VerticalAxisProperty

VerticalBindingProperty

BindableProperty

Identifies the VerticalBinding bindable property.

C#
public static readonly BindableProperty VerticalBindingProperty

Properties

Gets or sets the axis against which values resolved from HorizontalBinding are plotted. Leave this property null to use the first axis declared in Axes as the default horizontal axis.

C#
public ChartAxis HorizontalAxis { get; set; }

Gets or sets the name of the property on each data item, in ItemsSource, whose value is plotted against the horizontal axis. The property is resolved by name through reflection at layout time, so it must exactly match a public, readable member of the bound item type.

C#
public string HorizontalBinding { get; set; }

Gets or sets the offset, in device-independent units, applied to data point labels relative to their anchor point when ShowLabels is true.

C#
public Size LabelOffset { get; set; }
Remarks:

When this property has not been explicitly set, its getter returns an orientation-aware default: (5, 0) for horizontally oriented series (so labels are offset to the right of each point) and (0, 5) for vertically oriented series (so labels are offset above each point). The effective orientation is derived from whether a CategoricalAxis is assigned to HorizontalAxis or VerticalAxis.

Gets or sets the axis against which values resolved from VerticalBinding are plotted. Leave this property null to use the second axis declared in Axes as the default vertical axis.

C#
public ChartAxis VerticalAxis { get; set; }

Gets or sets the name of the property on each data item, in ItemsSource, whose value is plotted against the vertical axis. The property is resolved by name through reflection at layout time, so it must exactly match a public, readable member of the bound item type.

C#
public string VerticalBinding { get; set; }