Class ArcSegmentData
Represents an elliptical arc between two points.
Inherited Members
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class ArcSegmentData : PathSegmentData, INotifyPropertyChanged
Constructors
ArcSegmentData()
Declaration
public ArcSegmentData()
Properties
IsLargeArc
Gets or sets a value that indicates whether the arc should be greater than 180 degrees.
Declaration
public bool IsLargeArc { get; set; }
Property Value
System.Boolean
|
Point
Gets or sets the endpoint of the elliptical arc.
Declaration
public Location Point { get; set; }
Property Value
Location
|
RotationAngle
Gets or sets the amount (in degrees) by which the ellipse is rotated about the x-axis.
Declaration
public double RotationAngle { get; set; }
Property Value
System.Double
|
Size
Gets or sets the x- and y-radius of the arc as a Size structure. The x and y elements are given in degrees.
Declaration
public Size Size { get; set; }
Property Value
System.Windows.Size
|
SweepDirection
Gets or sets a value that specifies whether the arc is drawn in the Clockwise or Counterclockwise direction.
Declaration
public SweepDirection SweepDirection { get; set; }
Property Value
System.Windows.Media.SweepDirection
|