AngleRange
Represents a structure that defines the starting and sweeping angles of an ellipse Arc.
Definition
Namespace:Telerik.Charting
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
[TypeConverter(typeof(StringToAngleRangeConverter))]
public struct AngleRange
Inherited Members
Constructors
Initializes a new instance of the AngleRange struct.
Initializes a new instance of the AngleRange struct.
Fields
The default structure value with its starting angle set to 0 and its sweep angle set to 360.
public static readonly AngleRange Default
Properties
Gets or sets start angle from which the arc starts.
public double StartAngle { get; set; }
Gets or sets the angle that defines the length of the Arc.
public double SweepAngle { get; set; }
SweepDirection
SweepDirection
Gets or sets the sweep direction.
public SweepDirection SweepDirection { get; set; }
Methods
Returns a hash code for this instance.
public override int GetHashCode()
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
Overrides:
Operators
Determines whether two angle ranges are not equal.
public static bool operator !=(AngleRange range1, AngleRange range2)
The first range.
range2AngleRangeThe second range.
Returns:true if the operands are not equal; otherwise, false.
Determines whether two angle ranges are equal.
public static bool operator ==(AngleRange range1, AngleRange range2)
The first range.
range2AngleRangeThe second range.
Returns:true if the operands are equal; otherwise, false.