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.

Definition

Namespace:Telerik.Windows.Controls.TreeMap

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

cs-api-definition
public abstract class RangeColorizerBase : ColorMapping

Inheritance: objectInheritanceContextPropagatorMappingBaseObjectMappingBaseValueMappingBaseColorMappingRangeColorizerBase

Derived Classes: BrushColorizerBaseGradientColorizerBaseValueBrushColorizerValueGradientColorizer

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

Fields

IsAbsoluteProperty

Identifies the IsAbsolute dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty IsAbsoluteProperty

Field Value

DependencyProperty

RangeMaximumProperty

Identifies the RangeMaximum dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty RangeMaximumProperty

Field Value

DependencyProperty

RangeMinimumProperty

Identifies the RangeMinimum dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty RangeMinimumProperty

Field Value

DependencyProperty

ValuePathProperty

Identifies the ValuePath dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty ValuePathProperty

Field Value

DependencyProperty

Properties

IsAbsolute

Gets or sets the is absolute.

Declaration

cs-api-definition
public bool IsAbsolute { get; set; }

Property Value

bool

The is absolute.

RangeMaximum

Gets or sets the maximum.

Declaration

cs-api-definition
public double RangeMaximum { get; set; }

Property Value

double

The maximum.

RangeMinimum

Gets or sets the minimum.

Declaration

cs-api-definition
public double RangeMinimum { get; set; }

Property Value

double

The minimum.

ValuePath

Gets or sets the value path.

Declaration

cs-api-definition
public string ValuePath { get; set; }

Property Value

string

The value path.

Methods

SelectBrush(double)

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

Declaration

cs-api-definition
public virtual Brush SelectBrush(double value)

Parameters

value

double

The value.

Returns

Brush

SelectBrushInAbsoluteValues(double)

Selects the brush in absolute values.

Declaration

cs-api-definition
protected virtual Brush SelectBrushInAbsoluteValues(double value)

Parameters

value

double

The value.

Returns

Brush

SelectBrushInRelativeValues(double)

Selects the brush in relative values.

Declaration

cs-api-definition
protected virtual Brush SelectBrushInRelativeValues(double value)

Parameters

value

double

The value.

Returns

Brush