Class HotSpot
Represents definition of the hot spot of the geographically positioned framework element. The hot spot is the point inside (or outside) of the framework element which should be bound to the geographic location.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class HotSpot : DependencyObject
Constructors
HotSpot()
Initializes a new instance of the HotSpot class.
Declaration
public HotSpot()
Fields
CoordinateSystemProperty
Identifies the CoordinateSystem dependency property.
Declaration
public static readonly DependencyProperty CoordinateSystemProperty
Field Value
System.Windows.DependencyProperty
|
ElementNameProperty
Identifies the ElementName dependency property.
Declaration
public static readonly DependencyProperty ElementNameProperty
Field Value
System.Windows.DependencyProperty
|
XProperty
Identifies the X dependency property.
Declaration
public static readonly DependencyProperty XProperty
Field Value
System.Windows.DependencyProperty
|
XUnitsProperty
Identifies the XUnits dependency property.
Declaration
public static readonly DependencyProperty XUnitsProperty
Field Value
System.Windows.DependencyProperty
|
YProperty
Identifies the Y dependency property.
Declaration
public static readonly DependencyProperty YProperty
Field Value
System.Windows.DependencyProperty
|
YUnitsProperty
Identifies the YUnits dependency property.
Declaration
public static readonly DependencyProperty YUnitsProperty
Field Value
System.Windows.DependencyProperty
|
Properties
CoordinateSystem
Gets or sets coordinate system.
Declaration
public HotspotCoordinateSystem CoordinateSystem { get; set; }
Property Value
HotspotCoordinateSystem
|
ElementName
Gets or sets name of the child element which is hot spot of the framework element.
Declaration
public string ElementName { get; set; }
Property Value
System.String
|
X
Gets or sets X value.
Declaration
public double X { get; set; }
Property Value
System.Double
|
XUnits
Gets or sets XUnits value.
Declaration
public HotSpotUnit XUnits { get; set; }
Property Value
HotSpotUnit
|
Y
Gets or sets Y value.
Declaration
public double Y { get; set; }
Property Value
System.Double
|
YUnits
Gets or sets YUnits value.
Declaration
public HotSpotUnit YUnits { get; set; }
Property Value
HotSpotUnit
|
Methods
Parse(String)
Converts a String representation of a hot spot into the equivalent HotSpot object.
Declaration
public static HotSpot Parse(string source)
Parameters
System.String
source
The String representation of the HotSpot object. |
Returns
HotSpot
The equivalent HotSpot structure. |