CartesianSeries
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
Namespace:Telerik.Maui.Controls.Charts
Assembly:Telerik.Maui.Controls.dll
Syntax:
public abstract class CartesianSeries : ChartSeries
Inheritance: objectChartSeriesCartesianSeries
Derived Classes:
Inherited Members
Constructors
protected CartesianSeries()
Fields
HorizontalAxisProperty
BindableProperty
Identifies the HorizontalAxis bindable property.
public static readonly BindableProperty HorizontalAxisProperty
HorizontalBindingProperty
BindableProperty
Identifies the HorizontalBinding bindable property.
public static readonly BindableProperty HorizontalBindingProperty
LabelOffsetProperty
BindableProperty
Identifies the LabelOffset bindable property.
public static readonly BindableProperty LabelOffsetProperty
VerticalAxisProperty
BindableProperty
Identifies the VerticalAxis bindable property.
public static readonly BindableProperty VerticalAxisProperty
VerticalBindingProperty
BindableProperty
Identifies the VerticalBinding bindable property.
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.
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.
public string HorizontalBinding { get; set; }
LabelOffset
Size
Gets or sets the offset, in device-independent units, applied to data point labels relative to their anchor point when ShowLabels is true.
public Size LabelOffset { get; set; }
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.
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.
public string VerticalBinding { get; set; }