Qt Charts

The Qt Charts module provides a set of easy-to-use chart components. It uses the Qt Graphics View Framework to integrate charts with modern user interfaces. Qt Charts can be used as QWidgets, QGraphicsWidget ,或 QML 类型。用户可以选择某种主题,轻松创建令人印象深刻的图表。

使用模块

QML API

模块的 QML 类型是可用的透过 QtCharts 导入。要使用类型,添加以下 import 语句到 .qml 文件:

import QtCharts
					

注意: 实例化的 QApplication is required for the QML types as the module depends on Qt's 图形视图框架 为渲染。 QGuiApplication is not sufficient. However, projects created with Qt Creator's Qt Quick Application wizard are based on the Qt Quick template that uses QGuiApplication by default. All the QGuiApplication instances in such projects must be replaced with QApplication .

C++ API

使用 Qt 模块的 C++ API 要求直接 (或透过其它依赖) 链接到模块库。几个构建工具对此有专用支持,包括 CMake and qmake .

构建采用 CMake

使用 find_package() 命令定位所需模块组件在 Qt6 包:

find_package(Qt6 REQUIRED COMPONENTS Charts)
target_link_libraries(mytarget PRIVATE Qt6::Charts)
					

更多细节,见 构建采用 CMake 概述。

采用 qmake 构建

要配置采用 qmake 构建模块,添加模块作为值为 QT 变量在工程的 .pro 文件:

QT += charts
					

模块演变

Qt Charts 的变化 列出了 Qt 的 Qt 6 系列在模块 API 和功能上所做出的重要改变。

文章和指南

范例

API 参考

许可

Qt Charts 在商业许可下是可用的来自 Qt 公司 。此外,它是可用的根据 GNU GPL (一般公共许可) 第 3 版 。见 Qt 许可 进一步了解细节。