在本页

HBarModelMapper QML Type

条形图系列的水平模型映射器。更多

Import Statement: import QtCharts 2.11
In C++: QHBarModelMapper

属性

详细说明

HBarModelMapper 类型可将源自QAbstractItemModel 类的数据模型用作图表的数据源。水平模型映射器用于在数据模型和AbstractBarSeries 之间创建连接,以便数据模型中的每一行定义一个条形集,每一列映射到条形系列中的一个类别。你需要实现数据模型,并将它暴露给 QML。

模型和条形序列属性都可用于操作数据。模型映射器使条形系列和数据模型保持同步。

模型映射器确保条形序列中的所有条形集大小相等。因此,从条形集中添加或删除一个值会导致条形系列中的所有条形集发生相同的变化。

下面的 QML 代码片段创建了一个有三个条形集的条形序列(假设模型至少有四行)。每个条形集都包含从第 1 列开始的数据。条形集的名称由行标题定义。

BarSeries {
    HBarModelMapper {
        model: myCustomModel // QAbstractItemModel derived implementation
        firstBarSetRow: 1
        lastBarSetRow: 3
        firstColumn: 1
    }
}

另请参阅 VBarModelMapper

属性文档

columnCount : int

模型中被映射为条形数列数据的列数。默认值为-1(数量限制为模型中的列数)。

firstBarSetRow : int

定义第一个条形图组的数据源是模型中的哪一行。默认值为-1(无效映射)。

firstColumn : int

模型中包含条形图系列中条形图组的第一个值的列。默认值为 0。

lastBarSetRow : int

用作最后一个条形图数据源的模型行。默认值为-1(无效映射)。

model : SomeModel

映射器使用的数据模型。您需要实现该模型并将其公开给 QML。

注意: 模型必须支持添加和删除行或列,以及修改单元格中的数据。

series : AbstractBarSeries

映射器使用的条形序列。在向映射器设置时,系列中的所有数据都会被丢弃。指定新系列后,旧系列将被断开(但保留其数据)。

© 2026 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.