In this Python PySide6 lesson we are going to learn about How to Create DonutChart in Python PySide6, so Donut charts are an effective way to visualize proportions, it is similar to pie charts. however donut charts also have hole in the center and it allows for additional information to be displayed. In this lesson we are going to explore how to create simple donut chart in PySide6 using the QtCharts module.
This is the complete code for creating Donut Chart in Python PySide6
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
import sys from PySide6.QtCore import Qt from PySide6.QtGui import QPainter from PySide6.QtWidgets import QApplication, QMainWindow, QVBoxLayout, QWidget from PySide6.QtCharts import QChartView, QChart, QPieSeries class MainWindow(QMainWindow): def __init__(self): super().__init__() self.setWindowTitle("GeeksCoders DonutChart Example") # Create the main widget and layout widget = QWidget() layout = QVBoxLayout(widget) # Create the chart view and add it to the layout chart_view = QChartView() chart_view.setRenderHint(QPainter.Antialiasing) layout.addWidget(chart_view) # Set the central widget self.setCentralWidget(widget) # Add some data to the chart chart = QChart() chart.setTitle("GeeksCoders Sales by Region") chart.setAnimationOptions(QChart.SeriesAnimations) series = QPieSeries() series.append("North", 10) series.append("South", 20) series.append("East", 30) series.append("West", 40) chart.addSeries(series) # Set the chart view's chart chart_view.setChart(chart) # Add a hole to the chart chart.setTheme(QChart.ChartThemeBlueCerulean) chart.setDropShadowEnabled(False) chart.legend().setVisible(True) chart.legend().setAlignment(Qt.AlignBottom) if __name__ == '__main__': app = QApplication(sys.argv) window = MainWindow() window.show() sys.exit(app.exec()) |
In the above code we have imported necessary modules from PySide6. after that we have defined custom MainWindow class that extends from QMainWindow and creates the main widget and layout.
Next we have created QChartView instance that will display DonutChart and add it to the layout. we also creates QChart instance and set its title and animation options. then we have created QPieSeries instance and add four data points to represent the sales of four regions. we use append method to add each data point to the series.
we have added QPieSeries instance to the QChart instance using the addSeries method. and finally we set QChartView’s chart to the QChart instance and set central widget of the main window to the widget.
we also added hole to the chart by setting theme to QtCharts.QChart.ChartThemeBlueCerulean and disabling the drop shadow, also we have enabled the chart’s legend and set its alignment.
Run the complete code and this will be the result