summaryrefslogtreecommitdiffstats
path: root/doc/src/classes.qdoc
blob: 55be493bbe99fdf1b8d41c662705b6136cd278b8 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*!
    \page classes.html
    \title QtCommercial Charts API
    \keyword All Classes

    Charts API is build on top of Qt Graphics View Framework. Charts can be displayed as QGraphicsWidget using QChart class. However
    there is also convenience class QChartView which is QWidget based. These lets quickly use QCharts as normal Qt widget.

    Each chart type is represented by QAbstractSeries derived class. To create given chart type users have to use instance of related series class and add it to QChart instance.
    \code
    QLineSeries* series = new QLineSeries();
    series->add(0, 6);
    series->add(2, 4);
    ...
    chartView->chart()->addSeries(series);
    chartView->chart()->createDefaultAxes();
    \endcode

    \raw HTML
        <table cellpadding="2" cellspacing="1" border="0" width="100%" class="indextable">
            <tr>
                <th class="titleheader" width="25%">
                    Common and global
                </th>
                <th class="titleheader" width="25%">
                    XY chart
                </th>
            </tr>
            <tr>
                <td valign="top">
                    <ul>
                    <li><a href="qchart.html">QChart</a></li>
                    <li><a href="qchartview.html">QChartView</a></li>
                    <li><a href="qabstractaxis.html">QAbstractAxis</a></li>
                    <li><a href="qvalueaxis.html">QValueAxis</a></li>
                    <li><a href="qlogvalueaxis.html">QLogValueAxis</a></li>
                    <li><a href="qbarcategoryaxis.html">QBarCategoryAxis</a></li>                   
                    <li><a href="qcategoryaxis.html">QCategoryAxis</a></li>
                    <li><a href="qdatetimeaxis.html">QDateTimeAxis</a></li>
                    <li><a href="qlegend.html">QLegend</a></li>
                    <li><a href="qlegendmarker.html">QLegendMarker</a></li>
                    <li><a href="qpielegendmarker.html">QPieLegendMarker</a></li>
                    <li><a href="qxylegendmarker.html">QXYLegendMarker</a></li>
                    <li><a href="qbarlegendmarker.html">QBarLegendMarker</a></li>
                    <li><a href="qarealegendmarker.html">QAreaLegendMarker</a></li>
                    <li><a href="qabstractseries.html">QAbstractSeries</a></li>
                    </ul>
                </td>
                <td valign="top">
                    <ul>
                    <li><a href="qxyseries.html">QXYSeries</a></li>
                    <li><a href="qlineseries.html">QLineSeries</a></li>
                    <li><a href="qareaseries.html">QAreaSeries</a></li>
                    <li><a href="qscatterseries.html">QScatterSeries</a></li>
                    <li><a href="qsplineseries.html">QSplineSeries</a></li>
                    <li><a href="qhxymodelmapper.html">QHXYModelMapper</a></li>
                    <li><a href="qvxymodelmapper.html">QVXYModelMapper</a></li>
                    </ul>
                </td>
            </tr>
        </table>
        <table cellpadding="2" cellspacing="1" border="0" width="100%" class="indextable">
            <tr>
                <th class="titleheader" width="25%">
                    Pie chart
                </th>
                <th class="titleheader" width="25%">
                    Bar chart
                </th>
            <tr>
                <td valign="top">
                    <ul>
                    <li><a href="qpieseries.html">QPieSeries</a></li>
                    <li><a href="qpieslice.html">QPieSlice</a></li>
                    <li><a href="qhpiemodelmapper.html">QHPieModelMapper</a></li>
                    <li><a href="qvpiemodelmapper.html">QVPieModelMapper</a></li>
                    </ul>
                </td>
                <td valign="top">
                    <ul>
                    <li><a href="qbarseries.html">QBarSeries</a></li>
                    <li><a href="qbarset.html">QBarSet</a></li>
                    <li><a href="qpercentbarseries.html">QPercentBarSeries</a></li>
                    <li><a href="qstackedbarseries.html">QStackedBarSeries</a></li>
                    <li><a href="qboxplotseries.html">QBoxPlotSeries</a></li>
                    <li><a href="qhbarmodelmapper.html">QHBarModelMapper</a></li>
                    <li><a href="qvbarmodelmapper.html">QVBarModelMapper</a></li>
                    <li><a href="qhorizontalbarseries.html">QHorizontalBarSeries</a></li>
                    <li><a href="qhorizontalstackedbarseries.html">QHorizontalStackedBarSeries</a></li>
                    <li><a href="qhorizontalpercentbarseries.html">QHorizontalPercentBarSeries</a></li>
                    </ul>
                </td>
            </tr>
        </table>
    \endraw
    
*/