Class ChartPalette
Defines the palette semantic for a RadChartBase instance.
The palette contains Entries, which are PaletteEntry objects, not related to any particular series
and the
Inheritance
Namespace: Telerik.Maui.Controls.Compatibility.Chart
Assembly: Telerik.Maui.Controls.Compatibility.dll
Syntax
public class ChartPalette : Object
Constructors
ChartPalette()
Properties
Entries
Gets the collection that stores entries not related to any particular series.
Declaration
public ObservableCollection<PaletteEntry> Entries { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<PaletteEntry>
|
Methods
GetEntry(Int32)
Gets the PaletteEntry (if present) at the specified index.
Declaration
public Nullable<PaletteEntry> GetEntry(int index)
Parameters
System.Int32
index
|
Returns
System.Nullable<PaletteEntry>
|
Events
Changed
Occurs upon a change in some of the entries or when an entry is added/removed/replaced.
Declaration
public event EventHandler Changed
Event Type
System.EventHandler
|