ClassRangeColorizerBase
Base class for all ColorMapping objects in RadTreeMap and RadPivotMap that rely on a range. A colorizer in RadTreeMap and RadPivotMap is a class which defines the Brush for the RadTreeMapItem objects.
Definition
Namespace:Telerik.Windows.Controls.TreeMap
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public abstract class RangeColorizerBase : ColorMapping
Inheritance: objectInheritanceContextPropagatorMappingBaseObjectMappingBaseValueMappingBaseColorMappingRangeColorizerBase
Derived Classes:
Inherited Members
Fields
IsAbsoluteProperty
Identifies the IsAbsolute dependency property.
Declaration
public static readonly DependencyProperty IsAbsoluteProperty
Field Value
DependencyProperty
RangeMaximumProperty
Identifies the RangeMaximum dependency property.
Declaration
public static readonly DependencyProperty RangeMaximumProperty
Field Value
DependencyProperty
RangeMinimumProperty
Identifies the RangeMinimum dependency property.
Declaration
public static readonly DependencyProperty RangeMinimumProperty
Field Value
DependencyProperty
ValuePathProperty
Identifies the ValuePath dependency property.
Declaration
public static readonly DependencyProperty ValuePathProperty
Field Value
DependencyProperty
Properties
IsAbsolute
Gets or sets the is absolute.
Declaration
public bool IsAbsolute { get; set; }
Property Value
The is absolute.
RangeMaximum
Gets or sets the maximum.
Declaration
public double RangeMaximum { get; set; }
Property Value
The maximum.
RangeMinimum
Gets or sets the minimum.
Declaration
public double RangeMinimum { get; set; }
Property Value
The minimum.
Methods
SelectBrush(double)
Selects a brush depending on the provided value and if it is IsAbsolute.
Declaration
public virtual Brush SelectBrush(double value)
Parameters
value
The value.
Returns
Brush
SelectBrushInAbsoluteValues(double)
Selects the brush in absolute values.
Declaration
protected virtual Brush SelectBrushInAbsoluteValues(double value)
Parameters
value
The value.
Returns
Brush
SelectBrushInRelativeValues(double)
Selects the brush in relative values.
Declaration
protected virtual Brush SelectBrushInRelativeValues(double value)
Parameters
value
The value.
Returns
Brush