- Hands-On GUI Programming with C++ and Qt5
- Lee Zhi Eng
- 232字
- 2021-08-27 19:00:20
Graphs and Charts
In the previous chapter, we learned how to retrieve data from a database using Qt's sql module. There are many ways to present this data to the users, such as displaying it in the form of tables or diagrams. In this chapter, we will learn how to do the latter—presenting data with different types of graphs and charts using Qt's charts module.
In this chapter, we will cover the following topics:
- Types of charts and graphs in Qt
- Charts and graphs implementation
- Creating the dashboard page
Since Qt 5.7, several modules that were only available for commercial users before have become free for all the open source package users, which includes the Qt Charts module. Therefore, it is considered a very new module for most Qt users who don't own the commercial license.
Do note that, unlike most of the Qt modules that are available under an LGPLv3 license, the Qt Chart module is offered under an GPLv3 license. Unlike LGPLv3, a GPLv3 license requires you to release the source code of your application, while your application must also be licensed under GPLv3. This means that you are not allowed to static-link Qt Chart with your application. It also prevents the module from being used in proprietary software.
Let's get started!
- Learning Spring 5.0
- Arduino開發實戰指南:LabVIEW卷
- Internet of Things with Intel Galileo
- 自制編程語言
- RabbitMQ Essentials
- Learning R for Geospatial Analysis
- Python機器學習算法: 原理、實現與案例
- SQL 經典實例
- Oracle GoldenGate 12c Implementer's Guide
- Extreme C
- Java EE企業級應用開發教程(Spring+Spring MVC+MyBatis)
- Node.js 12實戰
- Spring技術內幕:深入解析Spring架構與設計原理(第2版)
- 代碼閱讀
- Mockito Essentials