##// END OF EJS Templates
Fix value axis documentation...
Fix value axis documentation QML documentation does not show obsolete properties correctly. Removed the obsolete key and added a deprecated comment. Related typos fixed. Change-Id: I86c862e4f587541df0a08363834ad13efc14e1b4 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r2610:66fa88d10640
r2636:25b732239a6d
Show More
examples-logvalueaxis.qdoc
30 lines | 859 B | text/plain | TextLexer
/ doc / src / examples-logvalueaxis.qdoc
/*!
\example examples/logvalueaxis
\title Logarithmic Axis Example
\subtitle
The example shows how to use QLogValueAxis.
\image examples_logvalueaxis.png
Create a QLineSeries instance and add some data to it.
\snippet ../examples/logvalueaxis/main.cpp 1
To present the data on the chart we need a 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
The chart is ready to be shown.
\snippet ../examples/logvalueaxis/main.cpp 5
*/