HBoxPlotModelMapper QML Type

方框图系列的水平模型映射器。更多

Import Statement: import QtCharts 2.9
In C++: QHBoxPlotModelMapper

属性

详细说明

HBoxPlotModelMapper 类型可将源自QAbstractItemModel 类的数据模型用作图表的数据源。水平模型映射器用于在数据模型和BoxPlotSeries 类型之间创建连接,这样数据模型中的每一行都定义了一个框-须项,而每一列都映射到框-须项的范围和三个中值。

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

模型映射器可确保盒状图系列中的所有盒须项大小相等。因此,添加或删除方框-须项中的值会导致方框图系列中的所有方框-须项发生相同的变化。

下面的 QML 代码片段创建了一个有三个箱沪项的箱图序列(假设模型至少有四行)。每个方框-须项包含从第 1 列开始的数据。项的名称由行标题定义。

BoxPlotSeries {
    HBoxPlotModelMapper {
        model: myCustomModel // QAbstractItemModel derived implementation
        firstBoxSetRow: 1
        lastBoxSetRow: 3
        firstColumn: 1
    }
}

另请参阅 VBoxPlotModelMapper

属性文档

columnCount : int

映射为方框图系列数据的模型列数。最小值和默认值是-1(数目限制为模型中的列数)。


firstBoxSetRow : int

将模型中的行用作第一个盒状曲线项目的数据源。默认值为-1(无效映射)。


firstColumn : int

模型中包含盒状图序列中盒须项第一个值的列。默认值为 0。


lastBoxSetRow : 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.