summaryrefslogtreecommitdiffstats
path: root/doc/src/vpiemodelmapper.qdocinc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/vpiemodelmapper.qdocinc')
-rw-r--r--doc/src/vpiemodelmapper.qdocinc16
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/src/vpiemodelmapper.qdocinc b/doc/src/vpiemodelmapper.qdocinc
deleted file mode 100644
index b669a1c6..00000000
--- a/doc/src/vpiemodelmapper.qdocinc
+++ /dev/null
@@ -1,16 +0,0 @@
-VPieModelMapper allows you to use your own QAbstractItemModel derived model with data in columns as a data source
-for a pie series. It is possible to use both QAbstractItemModel and PieSeries data API to manipulate data.
-VPieModelMapper keeps the Pie and the model in sync.
-
-The following QML example would create a pie series with four slices (assuming the model has at least five rows).
-Each slice would contain a label from column 1 and a value from column 2.
-\code
- VPieModelMapper {
- series: pieSeries
- model: customModel
- labelsColumn: 1
- valuesColumn: 2
- firstRow: 1
- rowCount: 4
- }
-\endcode