Class HeatMapRangeColor
Defines a class used by the HeatMapRangeColorizer to select colors for the cells of the RadHeatMap. The values that fall within the From and To will be shown with the specified Color.
Inheritance
Namespace: Telerik.Windows.Controls.HeatMap
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public sealed class HeatMapRangeColor : DependencyObject, INotifyPropertyChanged
Constructors
HeatMapRangeColor()
Declaration
public HeatMapRangeColor()
Fields
ColorProperty
Identifies the Color dependency property.
Declaration
public static readonly DependencyProperty ColorProperty
Field Value
System.Windows.DependencyProperty
|
FromProperty
Identifies the From dependency property.
Declaration
public static readonly DependencyProperty FromProperty
Field Value
System.Windows.DependencyProperty
|
ToProperty
Identifies the To dependency property.
Declaration
public static readonly DependencyProperty ToProperty
Field Value
System.Windows.DependencyProperty
|
Properties
Color
Gets or sets the color.
Declaration
public Color Color { get; set; }
Property Value
System.Windows.Media.Color
|
From
Gets or sets the lower boundary value.
Declaration
public double From { get; set; }
Property Value
System.Double
|
To
Gets or sets the upper boundary value.
Declaration
public double To { get; set; }
Property Value
System.Double
|
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|