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.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

cs-api-definition
[TypeConverter(typeof(HotSpotConverter))]
public class HotSpot : DependencyObject

Inheritance: objectHotSpot

Constructors

HotSpot()

Initializes a new instance of the HotSpot class.

Declaration

cs-api-definition
public HotSpot()

Fields

CoordinateSystemProperty

Identifies the CoordinateSystem dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty CoordinateSystemProperty

Field Value

DependencyProperty

ElementNameProperty

Identifies the ElementName dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty ElementNameProperty

Field Value

DependencyProperty

XProperty

Identifies the X dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty XProperty

Field Value

DependencyProperty

XUnitsProperty

Identifies the XUnits dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty XUnitsProperty

Field Value

DependencyProperty

YProperty

Identifies the Y dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty YProperty

Field Value

DependencyProperty

YUnitsProperty

Identifies the YUnits dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty YUnitsProperty

Field Value

DependencyProperty

Properties

CoordinateSystem

Gets or sets coordinate system.

Declaration

cs-api-definition
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

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

Property Value

string

X

Gets or sets X value.

Declaration

cs-api-definition
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "X")]
public double X { get; set; }

Property Value

double

XUnits

Gets or sets XUnits value.

Declaration

cs-api-definition
public HotSpotUnit XUnits { get; set; }

Property Value

HotSpotUnit

Y

Gets or sets Y value.

Declaration

cs-api-definition
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Y")]
public double Y { get; set; }

Property Value

double

YUnits

Gets or sets YUnits value.

Declaration

cs-api-definition
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

cs-api-definition
public static HotSpot Parse(string source)

Parameters

source

string

The String representation of the HotSpot object.

Returns

HotSpot

The equivalent HotSpot structure.