New to Telerik UI for WinFormsStart a free 30-day trial

Represents a data point that is plotted on charts, using Polar coordinate system and two linear axes.

Definition

Constructors

Initializes a new instance of the PolarDataPoint class.

C#
public PolarDataPoint()

Initializes a new instance of the PolarDataPoint class.

C#
public PolarDataPoint(double value, double angle)
Parameters:valuedouble

The value.

angledouble

The angle.

Properties

Gets or sets the angle of the data point.

C#
public double Angle { get; set; }

Gets or sets the value (radius) of the data point.

C#
public double? Value { get; set; }