##// END OF EJS Templates
QML boxplot image addition...
QML boxplot image addition Change-Id: I126eb56b2a7cc777eebc4b0985e0044dc2e60621 Reviewed-by: Mika Salmela <mika.salmela@digia.com>

File last commit:

r2456:4278a56d8f51
r2533:e27bcd66185c
Show More
examples-logvalueaxis.qdoc
30 lines | 869 B | text/plain | TextLexer
/ doc / src / examples-logvalueaxis.qdoc
Marek Rosa
logvalueaxis and multiaxis examples documented
r2374 /*!
\example examples/logvalueaxis
\title Logarithmic axis example
\subtitle
The example shows how to use QLogValueAxis.
\image examples_logvalueaxis.png
Create QLineSeries instance and add some data to it.
\snippet ../examples/logvalueaxis/main.cpp 1
Mika Salmela
Fix for typos on documentation.
r2456 To present the data on the chart we need QChart instance. Add the series to it, hide the legend and set the title of the chart.
Marek Rosa
logvalueaxis and multiaxis examples documented
r2374
\snippet ../examples/logvalueaxis/main.cpp 2
Create the axes. Add them to the chart and attach to the series.
\snippet ../examples/logvalueaxis/main.cpp 3
Then create a QChartView object with QChart as a parameter. Enable antialiasing to have the rendered line look nicer.
\snippet ../examples/logvalueaxis/main.cpp 4
Chart is ready to be shown.
\snippet ../examples/logvalueaxis/main.cpp 5
*/