##// END OF EJS Templates
Fix for hiding overloaded virtual functions...
Fix for hiding overloaded virtual functions ChartAxisElement::setGeometry(QRectF, QRectF) hided virtual function with the same name from QGraphicsLayoutItem. Causes around 400 warnings. Change-Id: I4474e4879058e2b785e72897ed47dea0f2b24cd1 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r2456:4278a56d8f51
r2572:fd6a3d4befc5
Show More
examples-linechart.qdoc
30 lines | 980 B | text/plain | TextLexer
/ doc / src / examples-linechart.qdoc
Michal Klocek
Refactor documentation...
r330 /*!
Tero Ahola
Fixing example documentation
r500 \example examples/linechart
Michal Klocek
Refactor documentation...
r330 \title LineChart Example
\subtitle
The example shows how to create simple line chart.
Tero Ahola
Documentation front page
r979 \image examples_linechart.png
Michal Klocek
Add linechart example documentation
r370
Marek Rosa
Update line and spline chart examples
r902 To create line chart, QLineSeries instance is needed. Let's create one.
Michal Klocek
Add linechart example documentation
r370
sauimone
fixed example paths in doc
r496 \snippet ../examples/linechart/main.cpp 1
Michal Klocek
Add linechart example documentation
r370
Marek Rosa
Docs fix: removed duplicated word, function is named append not add
r2012 Then we add data to series. We can use append() member function or use stream operator.
Michal Klocek
Add linechart example documentation
r370
sauimone
fixed example paths in doc
r496 \snippet ../examples/linechart/main.cpp 2
Michal Klocek
Add linechart example documentation
r370
Mika Salmela
Fix for typos on documentation.
r2456 To present the data on the chart we need QChart instance. We add the series to it, create the default axes and set the title of the chart.
Michal Klocek
Add linechart example documentation
r370
sauimone
fixed example paths in doc
r496 \snippet ../examples/linechart/main.cpp 3
Marek Rosa
Update line and spline chart examples
r902
Then we create a QChartView object with QChart as a parameter. This way we don't need to create QGraphicsView scene ourselves. We also set the Antialiasing on to have the rendered lines look nicer.
Michal Klocek
Add linechart example documentation
r370
sauimone
fixed example paths in doc
r496 \snippet ../examples/linechart/main.cpp 4
Marek Rosa
Update line and spline chart examples
r902
Chart is ready to be shown.
\snippet ../examples/linechart/main.cpp 5
Michal Klocek
Add linechart example documentation
r370
Marek Rosa
Update line and spline chart examples
r902 */