Class RangeColorizerBase
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.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.TreeMap
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public abstract class RangeColorizerBase : ColorMapping, ISupportValuePath
Fields
IsAbsoluteProperty
Identifies the IsAbsolute dependency property.
Declaration
public static readonly DependencyProperty IsAbsoluteProperty
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
|
ValuePathProperty
Identifies the ValuePath dependency property.
Declaration
public static readonly DependencyProperty ValuePathProperty
Field Value
System.Windows.DependencyProperty
|
Properties
IsAbsolute
Gets or sets the is absolute.
Declaration
public bool IsAbsolute { get; set; }
Property Value
System.Boolean
The is absolute. |
RangeMaximum
Gets or sets the maximum.
Declaration
public double RangeMaximum { get; set; }
Property Value
System.Double
The maximum. |
RangeMinimum
Gets or sets the minimum.
Declaration
public double RangeMinimum { get; set; }
Property Value
System.Double
The minimum. |
ValuePath
Gets or sets the value path.
Declaration
public string ValuePath { get; set; }
Property Value
System.String
The value path. |
Methods
SelectBrush(Double)
Selects a brush depending on the provided value and if it is IsAbsolute.
Declaration
public virtual Brush SelectBrush(double value)
Parameters
System.Double
value
The value. |
Returns
System.Windows.Media.Brush
|
SelectBrushInAbsoluteValues(Double)
Selects the brush in absolute values.
Declaration
protected virtual Brush SelectBrushInAbsoluteValues(double value)
Parameters
System.Double
value
The value. |
Returns
System.Windows.Media.Brush
|
SelectBrushInRelativeValues(Double)
Selects the brush in relative values.
Declaration
protected virtual Brush SelectBrushInRelativeValues(double value)
Parameters
System.Double
value
The value. |
Returns
System.Windows.Media.Brush
|