summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorsauimone <samu.uimonen@digia.com>2012-08-29 13:27:30 +0300
committersauimone <samu.uimonen@digia.com>2012-08-29 13:27:30 +0300
commitd126e005f572969b65869ba8f8b8cb7ccae7c89b (patch)
treeefd3e894b0122f627e8d55a1dbeb7720a90066e5 /doc
parentc0fc53c8ab57052239a4f2060d341d56c0c673c4 (diff)
removed doc for dropped populationpyramid example
Diffstat (limited to 'doc')
-rw-r--r--doc/src/examples-pouplationpyramid.qdoc45
1 files changed, 0 insertions, 45 deletions
diff --git a/doc/src/examples-pouplationpyramid.qdoc b/doc/src/examples-pouplationpyramid.qdoc
deleted file mode 100644
index 3bec181a..00000000
--- a/doc/src/examples-pouplationpyramid.qdoc
+++ /dev/null
@@ -1,45 +0,0 @@
-/*!
- \example examples/populationpyramid
- \title Population pyramid example
- \subtitle
-
- The example shows how to create a bar chart with bars extending in opposite directions. For example purposes we use population data found from wikipedia.
-
- \image examples_populationpyramid.png
-
- First we create two barsets and append the data to them. To make another barset grow to left, the values are negated.
-
- \snippet ../examples/populationpyramid/main.cpp 1
-
- We create the series and append the barsets to it. The series takes ownership of the barsets. We want the bars to be at same position on the y-axis, so we turn the
- overlap drawing on. We also set the bar width to be 50% of the category width.
-
- \snippet ../examples/populationpyramid/main.cpp 2
-
- Here we create the chart object and add the series to it. We set the title for chart with setTitle and then turn on animations of the series by calling
- setAnimationOptions(QChart::SeriesAnimations)
-
- \snippet ../examples/populationpyramid/main.cpp 3
-
- To have categories displayed on axis, we need to create a QBarCategoryAxis for that. Here we create a category axis with list of categories and
- set it to be the y-axis of the chart. The chart takes ownership of axis. For x-axis we use default axis, which is created and scaled to series data
- by calling createDefaultAxes of the chart. Note that the call for createDefaultAxes must be before we set the category axis. Otherwise the default axis will
- override the category axis.
- We also set the range for x-axis, since in this case it gives nicer result than autoscaling.
-
- \snippet ../examples/populationpyramid/main.cpp 4
-
- We also want to show the legend. To do that, we get the legend pointer from chart and set it to visible. We also place the legend to bottom of the chart by setting it's alignment
- to Qt::AlignBottom.
-
- \snippet ../examples/populationpyramid/main.cpp 5
-
- Finally we add the chart onto a view. We also turn on the antialiasing for the chartView.
-
- \snippet ../examples/populationpyramid/main.cpp 6
-
- Chart is ready to be shown. We set the chart to be central widget of the window.
- We also set the size for the chart window and show it.
-
- \snippet ../examples/populationpyramid/main.cpp 7
-*/ \ No newline at end of file