##// 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:

r1647:35c35dbacb1e
r2572:fd6a3d4befc5
Show More
examples-customchart.qdoc
26 lines | 921 B | text/plain | TextLexer
/ doc / src / examples-customchart.qdoc
/*!
\example examples/customchart
\title Custom chart example
\subtitle
This example shows how to customize the appearance of the different elements on a chart.
\image examples_customchart.png
We begin by creating a simple line series and a chart object.
\snippet ../examples/customchart/main.cpp 1
Let the customization begin. First we customize the series and the chart's title and background.
\snippet ../examples/customchart/main.cpp 2
Then we customize the axes.
\snippet ../examples/customchart/main.cpp 3
And the axis label values and ranges. Once the axes are ready we set them to be used by the chart.
\snippet ../examples/customchart/main.cpp 4
Finally we create a view containing the chart.
\snippet ../examples/customchart/main.cpp 5
Now we are ready to show the chart on a main window.
\snippet ../examples/customchart/main.cpp 6
*/