HBarModelMapper QML Type

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

Import Statement: import QtCharts 2.9
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。

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


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


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