ColorMapping Class
Definition
Abstract base class for mapping data values to colors in a shape map.
public class ColorMapping
Methods
| Name | Description |
|---|---|
| Matches | Determines if the mapping matches the given data value. |
| Bind (8 overloads) | Binds a Avalonia.AvaloniaProperty to an Avalonia.Data.BindingBase. Inherited from AvaloniaObject. |
| CheckAccess | Returns a value indicating whether the current thread is the UI thread. Inherited from AvaloniaObject. |
| ClearValue (4 overloads) | Clears a Avalonia.AvaloniaProperty's local value. Inherited from AvaloniaObject. |
| CoerceValue | Coerces the specified Avalonia.AvaloniaProperty. Inherited from AvaloniaObject. |
| Equals | Compares two objects using reference equality. Inherited from AvaloniaObject. |
| GetBaseValue | Inherited from AvaloniaObject. |
| GetHashCode | Gets the hash code for the object. Inherited from AvaloniaObject. |
| GetValue (3 overloads) | Gets a Avalonia.AvaloniaProperty value. Inherited from AvaloniaObject. |
| IsAnimating | Checks whether a Avalonia.AvaloniaProperty is animating. Inherited from AvaloniaObject. |
| IsSet | Checks whether a Avalonia.AvaloniaProperty is set on this object. Inherited from AvaloniaObject. |
| SetCurrentValue (2 overloads) | Sets the value of a dependency property without changing its value source. Inherited from AvaloniaObject. |
| SetValue (3 overloads) | Sets a Avalonia.AvaloniaProperty value. Inherited from AvaloniaObject. |
| VerifyAccess | Checks that the current thread is the UI thread and throws if not. Inherited from AvaloniaObject. |
Matches Method
Determines if the mapping matches the given data value.
public bool Matches(object value)
Parameters
value object
The data value to check.
Returns
bool
True if the value matches the mapping criteria.
Properties
| Name | Description |
|---|---|
| Brush | Gets or sets the brush to apply when the mapping conditions are met. |
| Label | Gets or sets the label to display in the legend for this mapping. |
| Dispatcher | Returns the Avalonia.AvaloniaObject.Dispatcher that this Avalonia.AvaloniaObject is associated with. Inherited from AvaloniaObject. |
| Item | Inherited from AvaloniaObject. |
Brush Property
Gets or sets the brush to apply when the mapping conditions are met.
public Avalonia.Media.IBrush Brush { get; set; }
Label Property
Gets or sets the label to display in the legend for this mapping.
public string Label { get; set; }
Fields
| Name | Description |
|---|---|
| BrushProperty | Identifies the Avalonia.Controls.Charts.ColorMapping.Brush Avalonia property. |
| LabelProperty | Identifies the Avalonia.Controls.Charts.ColorMapping.Label Avalonia property. |
BrushProperty Field
Identifies the Avalonia.Controls.Charts.ColorMapping.Brush Avalonia property.
public Avalonia.StyledProperty<Avalonia.Media.IBrush> BrushProperty
LabelProperty Field
Identifies the Avalonia.Controls.Charts.ColorMapping.Label Avalonia property.
public Avalonia.StyledProperty<string> LabelProperty
Events
| Name | Description |
|---|---|
| PropertyChanged | Raised when a Avalonia.AvaloniaProperty value changes on this object. Inherited from AvaloniaObject. |