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

Represents an abstract base class for chart series.

Definition

Namespace:Telerik.Maui.Controls.Compatibility.Chart

Assembly:Telerik.Maui.Controls.Compatibility.dll

Syntax:

C#
public abstract class ChartSeries : ChartElement

Inheritance: objectChartElementChartSeries

Derived Classes: CartesianSeriesPieSeries

Inherited Members ChartElement.OnPropertyChanged(string)ChartElement.Key

Constructors

C#
protected ChartSeries()

Fields

AllowSelectProperty

BindableProperty

Identifies the AllowSelect property.

C#
public static readonly BindableProperty AllowSelectProperty

DisplayNameProperty

BindableProperty

Identifies the DisplayName property.

C#
public static readonly BindableProperty DisplayNameProperty

IsSelectedProperty

BindableProperty

Identifies the IsSelected property.

C#
public static readonly BindableProperty IsSelectedProperty

ItemsSourceProperty

BindableProperty

Identifies the ItemsSource property.

C#
public static readonly BindableProperty ItemsSourceProperty

LabelBindingProperty

BindableProperty

Identifies the LabelBinding property.

C#
public static readonly BindableProperty LabelBindingProperty

LabelFormatProperty

BindableProperty

Identifies the LabelFormat property.

C#
public static readonly BindableProperty LabelFormatProperty

LabelFormatterProperty

BindableProperty

Identifies the LabelFormatter property.

C#
public static readonly BindableProperty LabelFormatterProperty

ShowLabelsProperty

BindableProperty

Identifies the ShowLabels property.

C#
public static readonly BindableProperty ShowLabelsProperty

Properties

Gets or sets a value indicating whether the series could be selected.

C#
public bool AllowSelect { get; set; }

Gets or sets the DisplayName.

C#
public string DisplayName { get; set; }

Gets or sets a value indicating whether the series are selected.

C#
public bool IsSelected { get; set; }

Gets or sets the source items to generate data points from.

C#
public IList ItemsSource { get; set; }

Gets or sets the LabelBinding.

C#
public PropertyNameDataPointBinding LabelBinding { get; set; }

Gets or sets the label format.

C#
public string LabelFormat { get; set; }

Gets or sets the label formatter.

C#
public ILabelFormatter LabelFormatter { get; set; }

Gets or sets a value indicating whether the series will display a label associated with each data point.

C#
public bool ShowLabels { get; set; }

Methods

Tells whether the property with the specified name has a default (invalid) value that should be disregarded while updating the native components.

C#
public virtual bool IsDefaultValue(string propertyName)
Parameters:propertyNamestringReturns:

bool

C#
protected virtual void OnItemsSourceChanged(IEnumerable oldValue, IEnumerable newValue)
Parameters:oldValueIEnumerablenewValueIEnumerable
C#
protected virtual void OnItemsSourceCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
Parameters:senderobjecteNotifyCollectionChangedEventArgs