范例展示如何启用 OpenGL 加速为 QLineSeries and QScatterSeries .
要运行范例从 Qt Creator ,打开 欢迎 模式,然后选择范例从 范例 。更多信息,拜访 构建和运行范例 .
为创建 OpenGL 加速系列,相比常规系列要做的是设置
QAbstractSeries::useOpenGL
特性到
true
:
series->setUseOpenGL(true);
This makes the chart to instantiate a transparent QOpenGLWidget that is used to draw the accelerated series on top of the chart.
注意: OpenGL 加速仅支持 QLineSeries and QScatterSeries .