Warning

This section contains snippets that were automatically translated from C++ to Python and may contain errors.

Creating Polar Charts#

Shows how to create a simple polar chart with multiple different series.

Note

This is part of the Charts with Widgets Gallery example.

It also shows how to implement scrolling and zooming of the polar chart as well as visually demonstrate how polar charts and Cartesian charts relate to each other.

../_images/examples_polarchart1.png

Creating a polar chart is done with a QPolarChart instance instead of a QChart instance.

chart = QPolarChart()

Axes are created similarly to Cartesian charts, but when axes are added to the chart, you can use polar orientations instead of alignments.

angularAxis = QValueAxis()
angularAxis.setTickCount(9) # First and last ticks are co-located on 0/360 angle.
angularAxis.setLabelFormat("%.1f")
angularAxis.setShadesVisible(True)
angularAxis.setShadesBrush(QBrush(QColor(249, 249, 255)))
chart.addAxis(angularAxis, QPolarChart.PolarOrientationAngular)
radialAxis = QValueAxis()
radialAxis.setTickCount(9)
radialAxis.setLabelFormat("%d")
chart.addAxis(radialAxis, QPolarChart.PolarOrientationRadial)

Zooming and scrolling of a polar chart is logically nearly identical to zooming and scrolling of a Cartesian chart. The main difference is that when scrolling along the X-axis (angular axis), the angle is used instead of the number of pixels. Another difference is that zooming to a rectangle cannot be done.

def keyPressEvent(self, event):

    switch (event.key()) {
    elif socketError == Qt.Key_Plus:
        chart().zoomIn()
        break
    elif socketError == Qt.Key_Minus:
        chart().zoomOut()
        break
    elif socketError == Qt.Key_Left:
        chart().scroll(-1.0, 0)
        break
    elif socketError == Qt.Key_Right:
        chart().scroll(1.0, 0)
        break
    elif socketError == Qt.Key_Up:
        chart().scroll(0, 1.0)
        break
    elif socketError == Qt.Key_Down:
        chart().scroll(0, -1.0)
        break
    elif socketError == Qt.Key_Space:
        switchChartType()
        break
    else:
        QGraphicsView.keyPressEvent(event)
        break

The same axes and series can be used in both cartesian and polar charts, though not simultaneously. To switch between chart types, you first need to remove the series and axes from the old chart, and then add them to the new chart. If you want to preserve the axis ranges, those need to be copied, too.

def switchChartType(self):

    newChart = QChart()
    oldChart = chart()
    if oldChart.chartType() == QChart.ChartTypeCartesian:
        newChart = QPolarChart()
else:
        newChart = QChart()
    # Move series and axes from old chart to new one
    > seriesList = oldChart.series()
    > axisList = oldChart.axes()
qreal> = QList<QPair<qreal,()
    for axis in axisList:
        valueAxis = QValueAxis(axis)
        axisRanges.append(QPair<qreal, qreal>(valueAxis.min(), valueAxis.max()))

    for series in seriesList:
        oldChart.removeSeries(series)
    for axis in axisList:
        oldChart.removeAxis(axis)
        newChart.addAxis(axis, axis.alignment())

    for series in seriesList:
        newChart.addSeries(series)
        for axis in axisList:
            series.attachAxis(axis)

    count = 0
    for axis in axisList:
        axis.setRange(axisRanges[count].first, axisRanges[count].second)
        count = count + 1

    newChart.setTitle(oldChart.title())
    setChart(newChart)
    del oldChart