##// END OF EJS Templates
Further animation fixes...
Further animation fixes - Scatter animation didn't update points correctly after remove - Spline animation crashed at insert/removal at zero index Change-Id: I181cfb195aa3f152fb1df1cf9f74b7592c1a8f19 Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>

File last commit:

r2488:5862599d088d
r2492:5a6d23b6b72f
Show More
qml.qdoc
102 lines | 4.8 KiB | text/plain | TextLexer
Tero Ahola
Began documenting the QML api
r1443 /*!
\page qml.html
\title QtCommercial Charts QML API
\keyword Charts QML API
Tero Ahola
QML API doc main page
r1469 QtCommercial Charts QML API is an intuitive and simple way to show charts in your QML
Tero Ahola
Fancy QML doc front page with a screen shot
r1958 applications.
\table
\row
\o \br
Use the following QML to create a simple pie chart:
\br
\br
\snippet ../examples/qmlpiechart/qml/qmlpiechart/main.qml 1
\snippet ../examples/qmlpiechart/qml/qmlpiechart/main.qml 2
\snippet ../examples/qmlpiechart/qml/qmlpiechart/main.qml 3
\o \inlineimage examples_qmlpiechart.png
\endtable
Tero Ahola
QML API doc main page
r1469
Miikka Heikkinen
Generate charts plugin for QtQuick2 as well as QtQuick1...
r2488 \note Since QtCommercial Charts utilizes Qt Graphics View Framework for drawing, it works best
with QtQuick 1, which is based on the same framework.
As of release 1.3.0, QtCommercial Charts is also usable with QtQuick 2, though the performance
is slightly worse than with QtQuick 1. Also, hovered and clicked signals of series do not work
with QtQuick 2.
Tero Ahola
Began documenting the QML api
r1443 \raw HTML
Tero Ahola
QML API doc main page
r1469 <table cellpadding="2" cellspacing="1" border="0" width="95%" class="indextable">
<tr>
<th class="titleheader" width="25%"> ChartView and it's properties </th>
</tr>
<tr>
<td valign="top">
<ul>
<li><a href="qml-chartview.html">ChartView</a></li>
Miikka Heikkinen
Add Polar chart support...
r2483 <li><a href="qml-polarchartview.html">PolarChartView</a></li>
sauimone
qml doc update
r1639 <li><a href="qml-abstractaxis.html">AbstractAxis</a></li>
Tero Ahola
Fixed minor issues in QML axes documentation
r1869 <li><a href="qml-valueaxis.html">ValueAxis</a></li>
Tero Ahola
Added CategoryAxis and CategoryRange to QML API
r1870 <li><a href="qml-categoryaxis.html">CategoryAxis</a></li>
<li><a href="qml-categoryrange.html">CategoryRange</a></li>
Tero Ahola
Fixed minor issues in QML axes documentation
r1869 <li><a href="qml-barcategoryaxis.html">BarCategoryAxis</a></li>
Tero Ahola
Fixed formatting of axis in qmlchart demo
r2029 <li><a href="qml-datetimeaxis.html">DateTimeAxis</a></li>
Tero Ahola
QML API doc main page
r1469 <li><a href="qml-legend.html">Legend</a></li>
Tero Ahola
QML methods of series: several fixes and documentation
r1521 <li><a href="qml-abstractseries.html">AbstractSeries</a></li>
Tero Ahola
QML API doc main page
r1469 </ul>
</td>
</tr>
</table>
<table cellpadding="2" cellspacing="1" border="0" width="95%" class="indextable">
<tr>
<th class="titleheader" width="25%"> XY chart </th>
</tr>
<tr>
<td valign="top">
<ul>
Tero Ahola
QML methods of series: several fixes and documentation
r1521 <li><a href="qml-xyseries.html">XYSeries</a></li>
Tero Ahola
QML API doc main page
r1469 <li><a href="qml-lineseries.html">LineSeries</a></li>
<li><a href="qml-areaseries.html">AreaSeries</a></li>
<li><a href="qml-scatterseries.html">ScatterSeries</a></li>
<li><a href="qml-splineseries.html">SplineSeries</a></li>
Tero Ahola
Renamed XyPoint to XYPoint
r1532 <li><a href="qml-xypoint.html">XYPoint</a></li>
Tero Ahola
Documenting QML bar model mappers
r1492 <li><a href="qml-hxymodelmapper.html">HXYModelMapper</a></li>
<li><a href="qml-vxymodelmapper.html">VXYModelMapper</a></li>
Tero Ahola
QML API doc main page
r1469 </ul>
</td>
</tr>
</table>
<table cellpadding="2" cellspacing="1" border="0" width="95%" class="indextable">
<tr>
<th class="titleheader" width="25%"> Pie chart </th>
<tr>
<td valign="top">
<ul>
<li><a href="qml-pieseries.html">PieSeries</a></li>
<li><a href="qml-pieslice.html">PieSlice</a></li>
Tero Ahola
Documenting QML bar model mappers
r1492 <li><a href="qml-hpiemodelmapper.html">HPieModelMapper</a></li>
<li><a href="qml-vpiemodelmapper.html">VPieModelMapper</a></li>
Tero Ahola
QML API doc main page
r1469 </ul>
</td>
</tr>
</table>
<table cellpadding="2" cellspacing="1" border="0" width="95%" class="indextable">
<tr>
<th class="titleheader" width="25%"> Bar chart </th>
<tr>
<td valign="top">
<ul>
<li><a href="qml-barseries.html">BarSeries</a></li>
<li><a href="qml-stackedbarseries.html">StackedBarSeries</a></li>
<li><a href="qml-percentbarseries.html">PercentBarSeries</a></li>
sauimone
qml documentation for horizontal barcharts
r1901 <li><a href="qml-horizontalbarseries.html">HorizontalBarSeries</a></li>
<li><a href="qml-horizontalstackedbarseries.html">HorizontalStackedBarSeries</a></li>
<li><a href="qml-horizontalpercentbarseries.html">HorizontalPercentBarSeries</a></li>
Tero Ahola
QML API doc main page
r1469 <li><a href="qml-barset.html">BarSet</a></li>
Tero Ahola
Documenting QML bar model mappers
r1492 <li><a href="qml-hbarmodelmapper.html">HBarModelMapper</a></li>
<li><a href="qml-vbarmodelmapper.html">VBarModelMapper</a></li>
Tero Ahola
QML API doc main page
r1469 </ul>
</td>
</tr>
</table>
\endraw
Tero Ahola
Began documenting the QML api
r1443 */