横積み棒グラフの作成

注: これは、ウィジェット・ギャラリーのチャート例の一部です。

積み上げ棒グラフは、データを棒グラフとして重ねて表示します。積み重ねは、カテゴリーごとに行われます。積み上げ横棒グラフの作成は、通常の棒グラフの作成と同じですが、積み上げ横棒グラフでは、QBarSeries の代わりにQHorizontalStackedBarSeries api を使用します。

棒グラフのセットは、すべての棒グラフで同じように使用される。様々なバーチャートの違いを説明するために、全ての例で同じデータを使用する。barchart が可視化するデータは、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;

シリーズを作成し、そこにバー・セットを追加する。系列はバー・セットの所有権を持つ。系列は、データをセットからカテゴリにグループ化します。各セットの最初の値は最初のカテゴリーに、2番目の値は2番目のカテゴリーに、といった具合にグループ化される。

auto series = new QHorizontalStackedBarSeries;
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 Stacked 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);

凡例も表示したい。そのためには、チャートから凡例ポインタを取得して、それを可視に設定します。また、アライメントを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.