##// END OF EJS Templates
PieModelMapper removed from the docs
PieModelMapper removed from the docs

File last commit:

r1508:692534957d8b
r1508:692534957d8b
Show More
classes.qdoc
99 lines | 4.0 KiB | text/plain | TextLexer
/*!
\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.
The API supports following chart types:
\list
\o line
\o area
\o scatter
\o spline
\o pie
\o grouped bar
\o percent bar
\o stacked bar
\endlist
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);
\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="qaxis.html">QAxis</a></li>
<li><a href="qaxiscategories.html">QAxisCategories</a></li>
<li><a href="qchartview.html">QChartView</a></li>
<li><a href="qlegend.html">QLegend</a></li>
<li><a href="qabstractseries.html">QAbstractSeries</a></li>
<li><a href="qchartglobal.html">QChartGlobal</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="qgroupedbarseries.html">QGroupedBarSeries</a></li>
<li><a href="qpercentbarseries.html">QPercentBarSeries</a></li>
<li><a href="qstackedbarseries.html">QStackedBarSeries</a></li>
<li><a href="qbarmodelmapper.html">QBarModelMapper</a></li>
<li><a href="qhbarmodelmapper.html">QHBarModelMapper</a></li>
<li><a href="qvbarmodelmapper.html">QVBarModelMapper</a></li>
</ul>
</td>
</tr>
</table>
\endraw
*/