New to Telerik UI for WPFStart a free 30-day trial

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:

C#
public sealed class HeatMapDesaturationColorizer : HeatMapColorizer

Inheritance: objectInheritanceContextPropagatorHeatMapColorizerHeatMapDesaturationColorizer

Inherited Members HeatMapColorizer.IsAbsolutePropertyHeatMapColorizer.IsAbsolute

Constructors

C#
public HeatMapDesaturationColorizer()

Fields

FromProperty

DependencyProperty

Identifies the From dependency property.

C#
public static readonly DependencyProperty FromProperty

RangeMaximumProperty

DependencyProperty

Identifies the RangeMaximum dependency property.

C#
public static readonly DependencyProperty RangeMaximumProperty

RangeMinimumProperty

DependencyProperty

Identifies the RangeMinimum dependency property.

C#
public static readonly DependencyProperty RangeMinimumProperty

StartColorProperty

DependencyProperty

Identifies the StartColor dependency property.

C#
public static readonly DependencyProperty StartColorProperty

ToProperty

DependencyProperty

Identifies the To dependency property.

C#
public static readonly DependencyProperty ToProperty

Properties

Gets or sets a value that determines how vivid the color for the maximal value will be.

C#
public double From { get; set; }
Remarks:

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.

C#
public double RangeMaximum { get; set; }
Remarks:

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.

C#
public double RangeMinimum { get; set; }
Remarks:

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 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.

C#
public Color StartColor { get; set; }

Gets or sets a value that determines how vivid the color for the minimal value will be.

C#
public double To { get; set; }
Remarks:

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.