summaryrefslogtreecommitdiffstats
path: root/doc/src/examples-lineandbarchart.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/examples-lineandbarchart.qdoc')
-rw-r--r--doc/src/examples-lineandbarchart.qdoc46
1 files changed, 0 insertions, 46 deletions
diff --git a/doc/src/examples-lineandbarchart.qdoc b/doc/src/examples-lineandbarchart.qdoc
deleted file mode 100644
index 3ef6615f..00000000
--- a/doc/src/examples-lineandbarchart.qdoc
+++ /dev/null
@@ -1,46 +0,0 @@
-/*!
- \example examples/lineandbar
- \title Line and BarChart Example
- \subtitle
-
- The example shows how to combine different charts and set the axes. In the example we combine a linechart with
- a barchart and use the category axis as a common axis for both.
-
- \image examples_lineandbar.png
-
- Here we create data for our bar series.
-
- \snippet ../examples/lineandbar/main.cpp 1
-
- We create a bar series and append sets to it.
- The first values of each set are grouped together in the first category, the second values in the second category and so on.
-
- \snippet ../examples/lineandbar/main.cpp 2
-
- Then we create a line series and add data to it. To make the data match with the barchart, we use the index as an x-value for our line series, so that
- first point is at (0,value) second at (1,value) and so on.
-
- \snippet ../examples/lineandbar/main.cpp 8
-
- Here we create the chart and add both series to it.
-
- \snippet ../examples/lineandbar/main.cpp 3
-
- To make the chart show the series properly, we have to create custom axes for the series. If we don't create custom axes, then each series will get scaled to
- use the maximum area of the chart (like in single series case) and the result will be incorrect. With custom axes we set the range of both series to follow the
- same axis. For the x-axis we use the QBarCategoryAxis and for the y-axis we use QValuesAxis.
-
- \snippet ../examples/lineandbar/main.cpp 4
-
- And we also want to show the legend.
-
- \snippet ../examples/lineandbar/main.cpp 5
-
- Finally we add the chart onto a view.
-
- \snippet ../examples/lineandbar/main.cpp 6
-
- Now it is ready to be shown in a window.
-
- \snippet ../examples/lineandbar/main.cpp 7
-*/