Class MapRange
This class is used to store information about value range. This information is used by color measure scale and map legend.
Inheritance
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class MapRange : DependencyObject
Constructors
MapRange()
Declaration
public MapRange()
Properties
HighlightFill
Gets or sets the highlight shape fill properties.
Declaration
public MapShapeFill HighlightFill { get; set; }
Property Value
MapShapeFill
|
MaxOutput
Property to bind to from XAML to show the formatted Max value.
Declaration
public string MaxOutput { get; set; }
Property Value
System.String
|
MaxValue
Max value of current range.
Declaration
public double MaxValue { get; set; }
Property Value
System.Double
|
MaxVisibility
Property to bind to from XAML to determine the visibility of Max output.
Declaration
public Visibility MaxVisibility { get; set; }
Property Value
System.Windows.Visibility
|
MinOutput
Property to bind to from XAML to show the formatted Min value.
Declaration
public string MinOutput { get; set; }
Property Value
System.String
|
MinValue
Min value of current range.
Declaration
public double MinValue { get; set; }
Property Value
System.Double
|
MinVisibility
Property to bind to from XAML to determine the visibility of Min output.
Declaration
public Visibility MinVisibility { get; set; }
Property Value
System.Windows.Visibility
|
ShapeFill
Gets or sets the shape fill properties.
Declaration
public MapShapeFill ShapeFill { get; set; }
Property Value
MapShapeFill
|