A RadHeatMap desaturation colorizer. This colorizer will define the color for the cells of the RadHeatMap in correspondence to the StartColor property.
Definition
Namespace:Telerik.Windows.Controls.HeatMap
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public sealed class HeatMapDesaturationColorizer : HeatMapColorizer
Inheritance: objectInheritanceContextPropagatorHeatMapColorizerHeatMapDesaturationColorizer
Inherited Members
Constructors
public HeatMapDesaturationColorizer()
Fields
FromProperty
DependencyProperty
Identifies the From dependency property.
public static readonly DependencyProperty FromProperty
RangeMaximumProperty
DependencyProperty
Identifies the RangeMaximum dependency property.
public static readonly DependencyProperty RangeMaximumProperty
RangeMinimumProperty
DependencyProperty
Identifies the RangeMinimum dependency property.
public static readonly DependencyProperty RangeMinimumProperty
StartColorProperty
DependencyProperty
Identifies the StartColor dependency property.
public static readonly DependencyProperty StartColorProperty
ToProperty
DependencyProperty
Identifies the To dependency property.
public static readonly DependencyProperty ToProperty
Properties
Gets or sets a value that determines how vivid the color for the maximal value will be.
public double From { get; set; }
The default value for this property is 1 and the maximal values are shown with the StartColor. For instance if the value of this property is 0.9 the maximal values will be show with a color that is a slight transfusion between the StartColor and White.
Gets or sets the maximum of the range with which the colorizer works.
public double RangeMaximum { get; set; }
This property is taken into consideration only if its value is not NaN and the IsAbsolute property is set to true.
Gets or sets the minimum of the range with which the colorizer works.
public double RangeMinimum { get; set; }
This property is taken into consideration only if its value is not NaN and the IsAbsolute property is set to true.
StartColor
Color
Gets or sets the start color. The cells with maximal values will be given this color. The colors for the rest of the values will be a transfusion between this color and White.
public Color StartColor { get; set; }
Gets or sets a value that determines how vivid the color for the minimal value will be.
public double To { get; set; }
The default value for this property is 0 and the minimal values are show with White color. For instance if the value of this property is 0.1 the minimal values will be shown with a color that is a slight transfusion between the White and the StartColor.