W3cubDocs

/Qt 5.15

HorizontalBarSeries QML Type

Presents a series of data as horizontal bars grouped by category. More...

Import Statement: import QtCharts 2.15
Instantiates: QHorizontalBarSeries
Inherits:

AbstractBarSeries

Detailed Description

The data is drawn as a series of horizontal bars grouped by category, with one bar per category from each bar set added to the series.

The following QML code snippet shows how to create a simple horizontal bar chart:

ChartView {
    title: "Horizontal Bar series"
    anchors.fill: parent
    legend.alignment: Qt.AlignBottom
    antialiasing: true

    HorizontalBarSeries {
        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] }
    }
}

© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-5.15/qml-qtcharts-horizontalbarseries.html