StructPaletteEntry
Defines an entry in a ChartPalette instance.
Definition
Namespace:Telerik.Maui.Controls.Compatibility.Chart
Assembly:Telerik.Maui.Controls.Compatibility.dll
Syntax:
public struct PaletteEntry
Inherited Members
Constructors
PaletteEntry(Color)
Initializes a new instance of the PaletteEntry struct.
Declaration
public PaletteEntry(Color fillColor)
Parameters
fillColor
Color
The fill color.
PaletteEntry(Color, Color)
Initializes a new instance of the PaletteEntry struct.
Declaration
public PaletteEntry(Color fillColor, Color strokeColor)
Parameters
fillColor
Color
The fill color.
strokeColor
Color
The stroke color.
Properties
FillColor
Gets or sets the Color instance that defines the fill of the corresponding visual objects.
Declaration
public Color FillColor { get; set; }
Property Value
Color
StrokeColor
Gets or sets the Color instance that defines the stroke of the corresponding visual objects.
Declaration
public Color StrokeColor { get; set; }
Property Value
Color
Methods
Equals(object)
Determines whether the specified object is equal to this instance.
GetHashCode()
Returns a hash code for this instance.
Declaration
public override int GetHashCode()
Returns
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
Overrides
Operators
operator !=(PaletteEntry, PaletteEntry)
Determines whether the two palette entries are not equal.
Declaration
public static bool operator !=(PaletteEntry entry1, PaletteEntry entry2)
Parameters
entry1
entry2
Returns
operator ==(PaletteEntry, PaletteEntry)
Determines whether the two palette entries are equal.
Declaration
public static bool operator ==(PaletteEntry entry1, PaletteEntry entry2)
Parameters
entry1
entry2
Returns