Class PolarCoordinateSystem
Represents a two-dimensional polar coordinate system. Points in the polar coordinate system are defined with radial and angular coordinates.
Inherited Members
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class PolarCoordinateSystem : GraphCoordinateSystem, IGraphCoordinateSystem, INamedObject
Constructors
PolarCoordinateSystem()
Declaration
public PolarCoordinateSystem()
Properties
AngularAxis
Gets or sets the angular axis of the PolarCoordinateSystem.
Declaration
public GraphAxis AngularAxis { get; set; }
Property Value
GraphAxis
|
AngularAxisLabelOrientation
Gets or sets the orientation of the angular axis labels.
Declaration
public AngularAxisLabelOrientation AngularAxisLabelOrientation { get; set; }
Property Value
AngularAxisLabelOrientation
|
AngularAxisStartAngle
Gets or sets the angle in degrees measured clockwise from the radial axis to the starting point of the angular axis.
Declaration
public double AngularAxisStartAngle { get; set; }
Property Value
System.Double
|
AngularAxisSweepAngle
Gets or sets the angle in degrees measured clockwise from the startAngle parameter to ending point of the angular axis.
Declaration
public double AngularAxisSweepAngle { get; set; }
Property Value
System.Double
|
InnerRadiusRatio
Gets or sets a value indicating the ratio between the inner and the outer radius of the PolarCoordinateSystem.
Declaration
public double InnerRadiusRatio { get; set; }
Property Value
System.Double
|
Remarks
Use InnerRadiusRatio greater than 0 to create 'doughnut' like graphs.
RadialAxis
Gets or sets the radial axis of the PolarCoordinateSystem.
Declaration
public GraphAxis RadialAxis { get; set; }
Property Value
GraphAxis
|
Methods
GetAxes()
Declaration
protected override IEnumerable<GraphAxis> GetAxes()
Returns
System.Collections.Generic.IEnumerable<GraphAxis>
|