Represents a two-dimensional polar coordinate system. Points in the polar coordinate system are defined with radial and angular coordinates.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
[AIAssistantDescription("Radial/angular coordinate system for Pie and Doughnut charts. Has RadialAxis and AngularAxis, each referencing a GraphAxis by name. Set InnerRadiusRatio > 0 for Doughnut; leave 0 for Pie.")]
public class PolarCoordinateSystem : GraphCoordinateSystem
Inheritance: objectMarshalByRefObjectComponentGraphCoordinateSystemPolarCoordinateSystem
Inherited Members
Constructors
TODO: Add documentation.
public PolarCoordinateSystem()
Properties
Gets or sets the angular axis of the PolarCoordinateSystem.
[TypeConverter(typeof(ExpandableObjectConverter))]
[AIAssistantByRef("/Axes")]
[AIAssistantRequired]
public GraphAxis AngularAxis { get; set; }
Gets or sets the orientation of the angular axis labels.
public AngularAxisLabelOrientation AngularAxisLabelOrientation { get; set; }
AngularAxisStartAngle
double
Gets or sets the angle in degrees measured clockwise from the radial axis to the starting point of the angular axis.
public double AngularAxisStartAngle { get; set; }
AngularAxisSweepAngle
double
Gets or sets the angle in degrees measured clockwise from the startAngle parameter to ending point of the angular axis.
public double AngularAxisSweepAngle { get; set; }
InnerRadiusRatio
double
Gets or sets a value indicating the ratio between the inner and the outer radius of the PolarCoordinateSystem.
public double InnerRadiusRatio { get; set; }
Use InnerRadiusRatio greater than 0 to create 'doughnut' like graphs.
Gets or sets the radial axis of the PolarCoordinateSystem.
[TypeConverter(typeof(ExpandableObjectConverter))]
[AIAssistantByRef("/Axes")]
[AIAssistantRequired]
public GraphAxis RadialAxis { get; set; }