##// END OF EJS Templates
Updated API classes doc page
Marek Rosa -
r1372:db87bf91c0ab
parent child
Show More
@@ -8,18 +8,18
8 8 The API supports following chart types:
9 9
10 10 \list
11 \o area
12 11 \o line
13 \o grouped bar
14 \o percent bar
15 \o pie
12 \o area
16 13 \o scatter
17 14 \o spline
15 \o pie
16 \o grouped bar
17 \o percent bar
18 18 \o stacked bar
19 19 \endlist
20 20
21 21
22 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.
22 Each chart type is represented by QAbstractSeries derived class. To create given chart type users have to use instace of releted sereis class and add it to QChart/QChartView instance.
23 23 \code
24 24 QLineSeries* series = new QLineSeries();
25 25 series->add(0, 6);
@@ -30,26 +30,17
30 30
31 31 \raw HTML
32 32 <table cellpadding="2" cellspacing="1" border="0" width="100%" class="indextable">
33 <tr>
34 <th class="titleheader" width="25%">
35 Common
36 </th>
37 <th class="titleheader" width="25%">
38 XY type
39 </th>
40 <th class="titleheader" width="25%">
41 Pie type
42 </th>
43 <th class="titleheader" width="25%">
44 Bar type
45 </th>
46 <th class="titleheader" width="25%">
47 Other files
48 </th>
49 </tr>
50 <tr>
51 <td valign="top">
52 <ul>
33 <tr>
34 <th class="titleheader" width="25%">
35 Common and global
36 </th>
37 <th class="titleheader" width="25%">
38 XY chart
39 </th>
40 </tr>
41 <tr>
42 <td valign="top">
43 <ul>
53 44 <li><a href="qchart.html">QChart</a></li>
54 45 <li><a href="qaxis.html">QAxis</a></li>
55 46 <li><a href="qaxiscategories.html">QAxisCategories</a></li>
@@ -57,10 +48,10
57 48 <li><a href="qlegend.html">QLegend</a></li>
58 49 <li><a href="qabstractseries.html">QAbstractSeries</a></li>
59 50 <li><a href="qchartglobal.html">QChartGlobal</a></li>
60 </ul>
61 </td>
62 <td valign="top">
63 <ul>
51 </ul>
52 </td>
53 <td valign="top">
54 <ul>
64 55 <li><a href="qlineseries.html">QLineSeries</a></li>
65 56 <li><a href="qareaseries.html">QAreaSeries</a></li>
66 57 <li><a href="qscatterseries.html">QScatterSeries</a></li>
@@ -68,19 +59,30
68 59 <li><a href="qxymodelmapper.html">QXYModelMapper</a></li>
69 60 <li><a href="qhxymodelmapper.html">QHXYModelMapper</a></li>
70 61 <li><a href="qvxymodelmapper.html">QVXYModelMapper</a></li>
71 </ul>
72 </td>
73 <td valign="top">
74 <ul>
62 </ul>
63 </td>
64 </tr>
65 </table>
66 <table cellpadding="2" cellspacing="1" border="0" width="100%" class="indextable">
67 <tr>
68 <th class="titleheader" width="25%">
69 Pie chart
70 </th>
71 <th class="titleheader" width="25%">
72 Bar chart
73 </th>
74 <tr>
75 <td valign="top">
76 <ul>
75 77 <li><a href="qpieseries.html">QPieSeries</a></li>
76 78 <li><a href="qpieslice.html">QPieSlice</a></li>
77 79 <li><a href="qpiemodelmapper.html">QPieModelMapper</a></li>
78 80 <li><a href="qhpiemodelmapper.html">QHPieModelMapper</a></li>
79 81 <li><a href="qvpiemodelmapper.html">QVPieModelMapper</a></li>
80 </ul>
81 </td>
82 <td valign="top">
83 <ul>
82 </ul>
83 </td>
84 <td valign="top">
85 <ul>
84 86 <li><a href="qbarseries.html">QBarSeries</a></li>
85 87 <li><a href="qbarset.html">QBarSet</a></li>
86 88 <li><a href="qgroupedbarseries.html">QGroupedBarSeries</a></li>
@@ -89,16 +91,10
89 91 <li><a href="qbarmodelmapper.html">QBarModelMapper</a></li>
90 92 <li><a href="qhbarmodelmapper.html">QHBarModelMapper</a></li>
91 93 <li><a href="qvbarmodelmapper.html">QVBarModelMapper</a></li>
92 </ul>
93 </td>
94 <td valign="top">
95 <ul>
96 <li><a href="qchartglobal.html">QChartGlobal</a></li>
97 </ul>
98 </td>
99 </tr>
94 </ul>
95 </td>
96 </tr>
100 97 </table>
101
102 98 \endraw
103 99
104 100 */
General Comments 0
You need to be logged in to leave comments. Login now