Class RangeBrush
Represents an object, which configures ValueBrushColorizer objects.
When IsAbsolute is True
,
From and To values should be absolute -
they should correspond to the underlying data.
When IsAbsolute is False
,
From and To values should be relative - between 0 and 1.
Inheritance
Namespace: Telerik.Windows.Controls.TreeMap
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public sealed class RangeBrush : DependencyObject
Constructors
RangeBrush()
Declaration
public RangeBrush()
Fields
BrushProperty
Identifies the Brush dependency property.
Declaration
public static readonly DependencyProperty BrushProperty
Field Value
System.Windows.DependencyProperty
|
FromProperty
Identifies the From dependency property.
Declaration
public static readonly DependencyProperty FromProperty
Field Value
System.Windows.DependencyProperty
|
ToProperty
Identifies the To dependency property.
Declaration
public static readonly DependencyProperty ToProperty
Field Value
System.Windows.DependencyProperty
|
Properties
Brush
Gets or sets the brush.
Declaration
public Brush Brush { get; set; }
Property Value
System.Windows.Media.Brush
The brush. |
From
Gets or sets the lower boundary value.
Declaration
public double From { get; set; }
Property Value
System.Double
The lower boundary value. |
To
Gets or sets the upper boundary value.
Declaration
public double To { get; set; }
Property Value
System.Double
The upper boundary value. |