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

Defines the palette semantic for a RadChartBase instance. The palette contains Entries, which are PaletteEntry objects, not related to any particular series.

Definition

Namespace:Telerik.Maui.Controls.Compatibility.Chart

Assembly:Telerik.Maui.Controls.Compatibility.dll

Syntax:

C#
public class ChartPalette

Inheritance: objectChartPalette

Constructors

Initializes a new instance of the ChartPalette class.

C#
public ChartPalette()

Properties

Gets the collection that stores entries not related to any particular series.

C#
public ObservableCollection<PaletteEntry> Entries { get; }

Methods

Gets the PaletteEntry (if present) at the specified index.

C#
public PaletteEntry? GetEntry(int index)
Parameters:indexintReturns:

PaletteEntry?

Events

Occurs upon a change in some of the entries or when an entry is added/removed/replaced.

C#
public event EventHandler Changed