Class
ChartPalette

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:

cs-api-definition
public class ChartPalette

Inheritance: objectChartPalette

Constructors

ChartPalette()

Initializes a new instance of the ChartPalette class.

Declaration

cs-api-definition
public ChartPalette()

Properties

Entries

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

Declaration

cs-api-definition
public ObservableCollection<PaletteEntry> Entries { get; }

Property Value

ObservableCollection<PaletteEntry>

Methods

GetEntry(int)

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

Declaration

cs-api-definition
public PaletteEntry? GetEntry(int index)

Parameters

index

int

Returns

PaletteEntry?

Events

Changed

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

Declaration

cs-api-definition
public event EventHandler Changed

Event Value

EventHandler