##// END OF EJS Templates
Revert "TODOs removed from code. Undo me after release"...
Revert "TODOs removed from code. Undo me after release" This reverts commit 37aa57c82a3a115ff1a58cb04f9dc2f3c1c06d45.

File last commit:

r2374:01d2a7083c00
r2407:d108889b4c99
Show More
examples-logvalueaxis.qdoc
30 lines | 868 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
To present the data on the char we need QChart instance. Add the series to it, hide the legend and set the title of the chart.
\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
*/