创建水平条形图

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

QHorizontalBarChart 将数据集显示为按类别分组的独立条形图。QHorizontalBarChart 的工作原理与 QBarChart 相似,只是条形图是在图表上水平绘制的。

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

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;

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

auto series = new QHorizontalBarSeries;
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 Horizontal Bar Chart");
chart->setAnimationOptions(QChart::SeriesAnimations);

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

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

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

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

最后,我们将图表添加到视图中。我们还打开了 chartView 的抗锯齿功能。

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.