막대형 차트 만들기
참고: 이것은 위젯이 있는 차트 갤러리 예제의 일부입니다.
barsets
은 모든 막대형 차트에서 동일한 방식으로 사용됩니다. 다양한 막대형 차트 간의 차이점을 설명하기 위해 예제에서 동일한 데이터를 사용합니다. 바차트가 시각화하는 데이터는 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;
시리즈를 생성하고 여기에 막대 집합을 추가합니다. 시리즈가 막대 집합의 소유권을 갖습니다. 시리즈는 집합에서 카테고리로 데이터를 그룹화합니다. 각 집합의 첫 번째 값은 첫 번째 범주에서 두 번째 값은 두 번째 범주에 그룹화되는 식으로 그룹화됩니다.
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.