summaryrefslogtreecommitdiffstats
path: root/doc/src/hbarmodelmapper.qdocinc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/hbarmodelmapper.qdocinc')
-rw-r--r--doc/src/hbarmodelmapper.qdocinc17
1 files changed, 0 insertions, 17 deletions
diff --git a/doc/src/hbarmodelmapper.qdocinc b/doc/src/hbarmodelmapper.qdocinc
deleted file mode 100644
index f4e7dcb6..00000000
--- a/doc/src/hbarmodelmapper.qdocinc
+++ /dev/null
@@ -1,17 +0,0 @@
-HBarModelMapper allows you to use your own QAbstractItemModel derived model with data in rows as a data source
-for any bar series. It is possible to use both QAbstractItemModel and bar series data API to manipulate data.
-HBarModelMapper keeps the series and the model in sync.
-
-The following QML example would create a bar series with three bar sets (assuming the model has
-at least four rows). Each bar set would contain data starting from column 1. The name of a set would be defined by
-the vertical header (of the row).
-\code
- BarSeries {
- HBarModelMapper {
- model: myCustomModel // QAbstractItemModel derived implementation
- firstBarSetRow: 1
- lastBarSetRow: 3
- firstColumn: 1
- }
- }
-\endcode