QPolarChart Class
The QPolarChart presents data in polar charts. More...
| Header: | #include <QPolarChart> |
| Inherits: | QChart |
Public Types
| enum | PolarOrientation { PolarOrientationRadial, PolarOrientationAngular } |
Detailed Description
Polar charts present data in a circular graph, where the placement of data is based on the angle and distance from the center of the graph, the pole.

A polar chart is a specialization of QChart that supports line, spline, area, and scatter series, and all axis types supported by them. Each axis can be used either as a radial or an angular axis.
The first and last tick mark on an angular QValueAxis are co-located at a 0/360 degree angle.
If the angular distance between two consecutive points in a series is more than 180 degrees, any direct line connecting the two points becomes meaningless, and will not be drawn. Instead, a line will be drawn to and from the center of the chart. Therefore, the axis ranges must be chosen accordingly when displaying line, spline, or area series.
Polar charts draw all axes of the same orientation in the same position, so using multiple axes of the same orientation can be confusing, unless the extra axes are only used to customize the grid. For example, you can display a highlighted range with a secondary shaded QCategoryAxis or provide unlabeled subticks with a secondary QValueAxis thas has hidden labels.
See also QChart.
Member Type Documentation
enum QPolarChart::PolarOrientation
This enum type specifies the polar orientation of an axis.
| Constant | Value | Description |
|---|---|---|
QPolarChart::PolarOrientationRadial | 0x1 | A radial axis, where the values are placed along the radius of the chart, starting at the pole. |
QPolarChart::PolarOrientationAngular | 0x2 | An angular axis, where the values are placed around the chart. |