summaryrefslogtreecommitdiffstats
path: root/doc/src/examples-customchart.qdoc
blob: 47005d79a3ac3c2c0369aba784745e8fc185dd95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*!
    \example examples/customchart
    \title Custom Chart Example
    \subtitle

    This example shows how to customize the appearance of the different elements on a chart.
    \image examples_customchart.png

    We begin by creating a simple line series and a chart object.
    \snippet ../examples/customchart/main.cpp 1

    First we customize the series and the chart's title and background.
    \snippet ../examples/customchart/main.cpp 2

    Then we customize the axes.
    \snippet ../examples/customchart/main.cpp 3

    Then the axis label values and ranges. Once the axes are ready, we set them to be used by the chart.
    \snippet ../examples/customchart/main.cpp 4

    Finally, we create a view containing the chart.
    \snippet ../examples/customchart/main.cpp 5

    Now we are ready to show the chart on a main window.
    \snippet ../examples/customchart/main.cpp 6
*/