New to Telerik UI for WPFStart a free 30-day trial

HotSpot

Class

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:

C#
[TypeConverter(typeof(HotSpotConverter))]
public class HotSpot : DependencyObject

Inheritance: objectHotSpot

Constructors

Initializes a new instance of the HotSpot class.

C#
public HotSpot()

Fields

CoordinateSystemProperty

DependencyProperty

Identifies the CoordinateSystem dependency property.

C#
public static readonly DependencyProperty CoordinateSystemProperty

ElementNameProperty

DependencyProperty

Identifies the ElementName dependency property.

C#
public static readonly DependencyProperty ElementNameProperty

XProperty

DependencyProperty

Identifies the X dependency property.

C#
public static readonly DependencyProperty XProperty

XUnitsProperty

DependencyProperty

Identifies the XUnits dependency property.

C#
public static readonly DependencyProperty XUnitsProperty

YProperty

DependencyProperty

Identifies the Y dependency property.

C#
public static readonly DependencyProperty YProperty

YUnitsProperty

DependencyProperty

Identifies the YUnits dependency property.

C#
public static readonly DependencyProperty YUnitsProperty

Properties

Gets or sets coordinate system.

C#
public HotspotCoordinateSystem CoordinateSystem { get; set; }

Gets or sets name of the child element which is hot spot of the framework element.

C#
public string ElementName { get; set; }

Gets or sets X value.

C#
public double X { get; set; }

Gets or sets XUnits value.

C#
public HotSpotUnit XUnits { get; set; }

Gets or sets Y value.

C#
public double Y { get; set; }

Gets or sets YUnits value.

C#
public HotSpotUnit YUnits { get; set; }

Methods

Converts a String representation of a hot spot into the equivalent HotSpot object.

C#
public static HotSpot Parse(string source)
Parameters:sourcestring

The String representation of the HotSpot object.

Returns:

HotSpot

The equivalent HotSpot structure.