HorizontalPercentBarSeries QML Type
일련의 분류된 데이터를 각 카테고리의 백분율로 표시합니다. 더 보기...
Import Statement: | import QtCharts 2.8 |
In C++: | QHorizontalPercentBarSeries |
Inherits: |
상세 설명
데이터는 카테고리당 하나의 막대를 사용하여 균일한 크기의 가로로 쌓인 일련의 막대로 그려집니다. 시리즈에 추가된 각 막대 세트는 누적된 각 막대에 단일 세그먼트를 기여합니다. 세그먼트 크기는 스택에 있는 모든 세그먼트의 총 값과 비교한 세그먼트 값의 백분율에 해당합니다. 값이 0인 막대는 그려지지 않습니다.
다음 QML 코드 스니펫은 간단한 가로 막대형 퍼센트 차트를 만드는 방법을 보여줍니다:
ChartView { title: "Horizontal Percent Bar Chart" anchors.fill: parent legend.alignment: Qt.AlignBottom antialiasing: true HorizontalPercentBarSeries { axisY: BarCategoryAxis { categories: ["2007", "2008", "2009", "2010", "2011", "2012" ] } BarSet { label: "Bob"; values: [2, 2, 3, 4, 5, 6] } BarSet { label: "Susan"; values: [5, 1, 2, 4, 1, 7] } BarSet { label: "James"; values: [3, 5, 8, 13, 5, 8] } } }
© 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.