Class
PolarCoordinateSystem

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:

cs-api-definition
public class PolarCoordinateSystem : GraphCoordinateSystem

Inheritance: objectMarshalByRefObjectComponentGraphCoordinateSystemPolarCoordinateSystem

Inherited Members GraphCoordinateSystem.ToString()GraphCoordinateSystem.NameGraphCoordinateSystem.SiteGraphCoordinateSystem.StyleGraphCoordinateSystem.Bindings

Constructors

PolarCoordinateSystem()

TODO: Add documentation.

Declaration

cs-api-definition
public PolarCoordinateSystem()

Properties

AngularAxis

Gets or sets the angular axis of the PolarCoordinateSystem.

Declaration

cs-api-definition
[TypeConverter(typeof(ExpandableObjectConverter))]
public GraphAxis AngularAxis { get; set; }

Property Value

GraphAxis

AngularAxisLabelOrientation

Gets or sets the orientation of the angular axis labels.

Declaration

cs-api-definition
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

cs-api-definition
public double AngularAxisStartAngle { get; set; }

Property Value

double

AngularAxisSweepAngle

Gets or sets the angle in degrees measured clockwise from the startAngle parameter to ending point of the angular axis.

Declaration

cs-api-definition
public double AngularAxisSweepAngle { get; set; }

Property Value

double

InnerRadiusRatio

Gets or sets a value indicating the ratio between the inner and the outer radius of the PolarCoordinateSystem.

Declaration

cs-api-definition
public double InnerRadiusRatio { get; set; }

Property Value

double

Remarks

Use InnerRadiusRatio greater than 0 to create 'doughnut' like graphs.

RadialAxis

Gets or sets the radial axis of the PolarCoordinateSystem.

Declaration

cs-api-definition
[TypeConverter(typeof(ExpandableObjectConverter))]
public GraphAxis RadialAxis { get; set; }

Property Value

GraphAxis

Methods

GetAxes()

TODO: Add documentation.

Declaration

cs-api-definition
protected override IEnumerable<GraphAxis> GetAxes()

Returns

IEnumerable<GraphAxis>

Overrides GraphCoordinateSystem.GetAxes()