##// END OF EJS Templates
Bugfix: remove restrictions from pie start & end angles...
Bugfix: remove restrictions from pie start & end angles Before it was not possible to start the pie from 9 o'clock for example.

File last commit:

r1089:15730c540d76
r1207:614787b7b70d
Show More
classes.qdoc
81 lines | 2.6 KiB | text/plain | TextLexer
/*!
\page classes.html
\title QtCommercial Charts API
\keyword All Classes
\image class_diagram.png
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 area
\o line
\o bar
\o percent bar
\o pie
\o scatter
\o spline
\o stacked bar
\endlist
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.
\code
QLineSeries* series = new QLineSeries();
series->add(0, 6);
series->add(2, 4);
...
chartView->addSeries(series);
\endcode
\raw HTML
<table cellpadding="2" cellspacing="1" border="0" width="100%" class="indextable">
<tr>
<th class="titleheader" width="33%">
List of classes
</th>
</tr>
<tr>
<td valign="top">
<ul>
<li><a href="qareaseries.html">QAreaSeries</a></li>
<li><a href="qbarseries.html">QBarSeries</a></li>
<li><a href="qbarset.html">QBarSet</a></li>
<li><a href="qchart.html">QChart</a></li>
<li><a href="qaxis.html">QAxis</a></li>
<li><a href="qchartview.html">QChartView</a></li>
<li><a href="qlineseries.html">QLineSeries</a></li>
<li><a href="qpercentbarseries.html">QPercentBarSeries</a></li>
<li><a href="qpieseries.html">QPieSeries</a></li>
<li><a href="qpieslice.html">QPieSlice</a></li>
<li><a href="qscatterseries.html">QScatterSeries</a></li>
<li><a href="qabstractseries.html">QAbstractSeries</a></li>
<li><a href="qsplineseries.html">QSplineSeries</a></li>
<li><a href="qstackedbarseries.html">QStackedBarSeries</a></li>
<li><a href="qxyseries.html">QXYSeries</a></li>
<li><a href="qlegend.html">QLegend</a></li>
</ul>
</td>
</tr>
</table>
<table cellpadding="2" cellspacing="1" border="0" width="100%" class="indextable">
<tr>
<th class="titleheader" width="33%">
Other files:
</th>
</tr>
<tr>
<td valign="top">
<ul>
<li><a href="qchartglobal.html">QChartGlobal</a></li>
</ul>
</td>
</tr>
</table>
\endraw
*/