创建条形图

注: 这是 "带 Widgets 图库的图表"示例的一部分。

barsets 在所有柱状图中的使用方式相同。为了说明各种柱状图之间的区别,我们在示例中使用了相同的数据。barchart 可视化的数据由QBarSet 实例定义。在这里,我们创建数据集并将数据添加到数据集中。这里使用 << 操作符追加数据。或者,也可以使用追加方法。

auto set0 = new QBarSet("Jane");
auto set1 = new QBarSet("John");
auto set2 = new QBarSet("Axel");
auto set3 = new QBarSet("Mary");
auto set4 = new QBarSet("Samantha");

*set0 << 1 << 2 << 3 << 4 << 5 << 6;
*set1 << 5 << 0 << 0 << 4 << 0 << 7;
*set2 << 3 << 5 << 8 << 13 << 8 << 5;
*set3 << 5 << 6 << 7 << 3 << 4 << 5;
*set4 << 9 << 7 << 5 << 3 << 1 << 2;

我们创建序列,并将条形集添加到序列中。系列拥有条形集的所有权。该系列将数据从集合分组到类别。每组数据的第一个值归入第一个类别,第二个值归入第二个类别,以此类推。

QBarSeries *series = new QBarSeries;
series->append(set0);
series->append(set1);
series->append(set2);
series->append(set3);
series->append(set4);

在此,我们创建图表对象并添加系列。我们使用 setTitle 为图表设置标题,然后调用 setAnimationOptions(QChart::SeriesAnimations) 打开系列的动画。

auto chart = new QChart;
chart->addSeries(series);
chart->setTitle("Simple Bar Chart");
chart->setAnimationOptions(QChart::SeriesAnimations);

要在坐标轴上显示类别,我们需要创建一个QBarCategoryAxis 。在这里,我们创建了一个包含类别列表的类别轴,并将其设置为对齐到底部,作为 x 轴,然后将其附加到系列。图表拥有轴的所有权。对于 Y 轴,我们使用值轴,并将其对齐到左侧。

QStringList categories {"Jan", "Feb", "Mar", "Apr", "May", "Jun"};
auto axisX = new QBarCategoryAxis;
axisX->append(categories);
chart->addAxis(axisX, Qt::AlignBottom);
series->attachAxis(axisX);

auto axisY = new QValueAxis;
axisY->setRange(0,15);
chart->addAxis(axisY, Qt::AlignLeft);
series->attachAxis(axisY);

我们还希望显示图例。为此,我们从图表中获取图例指针,并将其设置为可见。我们还将图例对齐方式设置为Qt::AlignBottom ,从而将其置于图表底部。

chart->legend()->setVisible(true);
chart->legend()->setAlignment(Qt::AlignBottom);

最后,我们将图表添加到视图中。

createDefaultChartView(chart);

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.