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

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:

C#
public abstract class RangeColorizerBase : ColorMapping

Inheritance: objectInheritanceContextPropagatorMappingBaseObjectMappingBaseValueMappingBaseColorMappingRangeColorizerBase...

Derived Classes: BrushColorizerBaseGradientColorizerBaseValueBrushColorizerValueGradientColorizer

Inherited Members ValueMappingBase.TargetPropertyNamePropertyValueMappingBase.TargetPropertyNameValueMappingBase.TargetPropertyInheritanceContextPropagator.CreateInstanceCore()InheritanceContextPropagator.FreezeCore(bool)

Fields

IsAbsoluteProperty

DependencyProperty

Identifies the IsAbsolute dependency property.

C#
public static readonly DependencyProperty IsAbsoluteProperty

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

ValuePathProperty

DependencyProperty

Identifies the ValuePath dependency property.

C#
public static readonly DependencyProperty ValuePathProperty

Properties

Gets or sets the is absolute.

C#
public bool IsAbsolute { get; set; }
Property Value:

The is absolute.

Gets or sets the maximum.

C#
public double RangeMaximum { get; set; }
Property Value:

The maximum.

Gets or sets the minimum.

C#
public double RangeMinimum { get; set; }
Property Value:

The minimum.

Gets or sets the value path.

C#
public string ValuePath { get; set; }
Property Value:

The value path.

Methods

Selects a brush depending on the provided value and if it is IsAbsolute.

C#
public virtual Brush SelectBrush(double value)
Parameters:valuedouble

The value.

Returns:

Brush

Selects the brush in absolute values.

C#
protected virtual Brush SelectBrushInAbsoluteValues(double value)
Parameters:valuedouble

The value.

Returns:

Brush

Selects the brush in relative values.

C#
protected virtual Brush SelectBrushInRelativeValues(double value)
Parameters:valuedouble

The value.

Returns:

Brush