##// END OF EJS Templates
Adds more bla bla bla to classes doc page
Michal Klocek -
r483:d7644481cc4b
parent child
Show More
@@ -1,55 +1,65
1 1 /*!
2 2 \page classes.html
3 3 \title QtCommercial Charts API
4 4 \keyword All Classes
5 5
6
6 Charts API is build on top of Qt Graphics View Framework. Charts can be displayed as QGrsphicsWidget using QChart class. However
7 there is also convenience class QChartView which is QWidget based. These lets quickly use QCharts as normal Qt widget.
8 Each chart type is represented by QSeries derived class. To create given chart type users have to use instace of releted sereis class and add it to QChart/QChartView instance.
9 \code
10 QLineSeries* series = new QLineSeries();
11 series->add(0, 6);
12 series->add(2, 4);
13 ...
14 chartView->addSeries(series);
15 \endcode
16
7 17 \image class_diagram.png
8 18 \raw HTML
9 19 <table cellpadding="2" cellspacing="1" border="0" width="100%" class="indextable">
10 20 <tr>
11 21 <th class="titleheader" width="33%">
12 22 List of classes
13 23 </th>
14 24 </tr>
15 25 <tr>
16 26 <td valign="top">
17 27 <ul>
18 28 <li><a href="qareaseries.html">QAreaSeries</a></li>
19 29 <li><a href="qbarseries.html">QBarSeries</a></li>
20 30 <li><a href="qbarset.html">QBarSet</a></li>
21 31 <li><a href="qchart.html">QChart</a></li>
22 32 <li><a href="qchartaxis.html">QChartAxis</a></li>
23 33 <li><a href="qchartview.html">QChartView</a></li>
24 34 <li><a href="qlineseries.html">QLineSeries</a></li>
25 35 <li><a href="qpercentbarseries.html">QPercentBarSeries</a></li>
26 36 <li><a href="qpieseries.html">QPieSeries</a></li>
27 37 <li><a href="qpieslice.html">QPieSlice</a></li>
28 38 <li><a href="qscatterseries.html">QScatterSeries</a></li>
29 39 <li><a href="qseries.html">QSeries</a></li>
30 40 <li><a href="qsplineseries.html">QSplineSeries</a></li>
31 41 <li><a href="qstackedbarseries.html">QStackedBarSeries</a></li>
32 42 <li><a href="qxyseries.html">QXYSeries</a></li>
33 43 </ul>
34 44 </td>
35 45 </tr>
36 46 </table>
37 47
38 48 <table cellpadding="2" cellspacing="1" border="0" width="100%" class="indextable">
39 49 <tr>
40 50 <th class="titleheader" width="33%">
41 51 Other files:
42 52 </th>
43 53 </tr>
44 54 <tr>
45 55 <td valign="top">
46 56 <ul>
47 57 <li><a href="qchartglobal.html">QChartGlobal</a></li>
48 58 </ul>
49 59 </td>
50 60 </tr>
51 61 </table>
52 62
53 63 \endraw
54 64
55 65 */
General Comments 0
You need to be logged in to leave comments. Login now