Class HeatMapValueGradientColorizer
A RadHeatMap colorizer that works with System.Windows.Media.GradientStops.
Inherited Members
Namespace: Telerik.Windows.Controls.HeatMap
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public sealed class HeatMapValueGradientColorizer : HeatMapColorizer
Constructors
HeatMapValueGradientColorizer()
Initializes a new instance of the HeatMapValueGradientColorizer class.
Declaration
public HeatMapValueGradientColorizer()
Fields
GradientStopsProperty
Identifies the GradientStops dependency property.
Declaration
public static readonly DependencyProperty GradientStopsProperty
Field Value
System.Windows.DependencyProperty
|
RangeMaximumProperty
Identifies the RangeMaximum dependency property.
Declaration
public static readonly DependencyProperty RangeMaximumProperty
Field Value
System.Windows.DependencyProperty
|
RangeMinimumProperty
Identifies the RangeMinimum dependency property.
Declaration
public static readonly DependencyProperty RangeMinimumProperty
Field Value
System.Windows.DependencyProperty
|
Properties
GradientStops
Gets or sets the gradient stops. The color for a value is selected to be a transfusion between two colors. These two colors are selected depending on the value of the System.Windows.Media.GradientStop.Offset property. When the IsAbsolute property is set to false the Offset is expected to be a relative value, between 0 and 1. When the IsAbsolute property is set to true the Offset is expected to be an absolute value. Gradient stops should be ordered in ascending order, according to the values of the Offset property.
Declaration
public GradientStopCollection GradientStops { get; set; }
Property Value
System.Windows.Media.GradientStopCollection
|
RangeMaximum
Gets or sets the maximum of the range with which the colorizer works.
Declaration
public double RangeMaximum { get; set; }
Property Value
System.Double
|
Remarks
This property is taken into consideration only if its value is not NaN and the IsAbsolute property is set to true.
RangeMinimum
Gets or sets the minimum of the range with which the colorizer works.
Declaration
public double RangeMinimum { get; set; }
Property Value
System.Double
|
Remarks
This property is taken into consideration only if its value is not NaN and the IsAbsolute property is set to true.