summaryrefslogtreecommitdiffstats
path: root/doc/src/valueaxis.qdocinc
blob: 8b21e7a38af3c18f6e7db6ab6d845b644254c134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
\inherits AbstractAxis
\brief The ValueAxis element is used for manipulating chart's axes

ValueAxis can be setup to show axis line with tick marks, grid lines and shades.
Values of axis are drawn to position of ticks

Example about using ValueAxis:
\code
    ChartView {
        ValueAxis {
            id: xAxis
            min: 0
            max: 10
        }
    // Add a few series...
    }
\endcode