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

Represents an elliptical arc between two points.

Definition

Namespace:Telerik.Windows.Controls.Map

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public class MapArcSegment : MapPathSegment

Inheritance: objectMapPathSegmentMapArcSegment

Inherited Members MapPathSegment.PropertyChangedHandler(DependencyObject, DependencyPropertyChangedEventArgs)MapPathSegment.CalculateNorthwest(IEnumerable<Location>)MapPathSegment.OnSegmentChanged()

Constructors

Initializes a new instance of the MapArcSegment class.

C#
public MapArcSegment()

Fields

IsLargeArcProperty

DependencyProperty

Identifies the IsLargeArc dependency property.

C#
public static readonly DependencyProperty IsLargeArcProperty

PointProperty

DependencyProperty

Identifies the Point dependency property.

C#
public static readonly DependencyProperty PointProperty

RotationAngleProperty

DependencyProperty

Identifies the RotationAngle dependency property.

C#
public static readonly DependencyProperty RotationAngleProperty

SizeProperty

DependencyProperty

Identifies the Size dependency property.

C#
public static readonly DependencyProperty SizeProperty

SweepDirectionProperty

DependencyProperty

Identifies the SweepDirection dependency property.

C#
public static readonly DependencyProperty SweepDirectionProperty

Properties

Gets or sets a value that indicates whether the arc should be greater than 180 degrees. This is a dependency property.

C#
public bool IsLargeArc { get; set; }

Gets or sets the endpoint of the elliptical arc. This is a dependency property.

C#
public Location Point { get; set; }

Gets or sets the amount (in degrees) by which the ellipse is rotated about the x-axis. This is a dependency property.

C#
public double RotationAngle { get; set; }

Size

Size

Gets or sets the x- and y-radius of the arc as a Size structure. This is a dependency property. The x and y elements are given in the kilometers.

C#
public Size Size { get; set; }

SweepDirection

SweepDirection

Gets or sets a value that specifies whether the arc is drawn in the Clockwise or Counterclockwise direction. This is a dependency property.

C#
public SweepDirection SweepDirection { get; set; }