summaryrefslogtreecommitdiffstats
path: root/doc/src/barcategoryaxis.qdocinc
blob: 858e7042b527b018f0417afec4a145315adac9ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
\inherits AbstractAxis

\brief The Axis element is used for manipulating chart's axes.

Axis can be setup to show axis line with tick marks, grid lines and shades.
Categories are drawn between ticks. Note that you can use this also with lineseries too.

To access BarCategoryAxis you can use ChartView API. For example:
\code
    ChartView {
        BarCategoryAxis {
            id: categoryAxis
            categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun" ]
        }
    // Add a few series...
    }
\endcode