IPolarChartView<TDrawingContext>
Interface

Assembly LiveChartsCore
Namespace LiveChartsCore.Kernel.Sketches

Summary:
Defines a polar chart view, this view is able to host one or many series in a polar coordinate system.

Type parameters:
TDrawingContext The type of the drawing context.
Implements:
IChartView<TDrawingContext>
Derived:

Properties

Gets the core.
Type: PolarChart<TDrawingContext>
Gets whether the chart scales to try to fit the plot to the series bounds, it calculates a new center of the radial chart, default is false.
Type: Boolean
Gets or sets the total circumference angle in degrees, default is 360.
Type: Double
Gets or sets the inner radius, default is 0.
Type: Double
Gets or sets the initial rotation, default is 0.
Type: Double
Gets or sets the angle axes.
Type: IEnumerable<IPolarAxis>
Gets or sets the radius axes.
Type: IEnumerable<IPolarAxis>
Gets or sets the series to plot in the user interface.
Type: IEnumerable<ISeries>

Methods

// Scales a point in pixels to the chart data scale.
LvcPointD point, // The point.
Int32 angleAxisIndex, // Index of the angle axis.
Int32 radiusAxisIndex// Index of the radius axis.
)
// Scales a point in the chart data scale to pixels.
LvcPointD point, // The point.
Int32 angleAxisIndex, // Index of the x axis.
Int32 radiusAxisIndex// Index of the radius axis.
)