##// END OF EJS Templates
Adds draft of axis bar label support
Adds draft of axis bar label support

File last commit:

r496:c23f1472c851
r497:9455cddd70de
Show More
example-areachart.qdoc
29 lines | 916 B | text/plain | TextLexer
/ doc / src / example-areachart.qdoc
Michal Klocek
Adds area chart...
r421 /*!
\example example/areachart
\title AreaChart Example
\subtitle
The example shows how to create simple area chart.
\image areachart.png
To create area charts, we need two QLineSeries instances. They are going to define upper and lower boundary of the area.
sauimone
fixed example paths in doc
r496 \snippet ../examples/areachart/main.cpp 1
Michal Klocek
Adds area chart...
r421
We add data to both series, we use stream operator.
sauimone
fixed example paths in doc
r496 \snippet ../examples/areachart/main.cpp 2
Michal Klocek
Adds area chart...
r421
Now we create QAreaSeries instance using two line series objects. We set the custom gradient fill and width of the outline.
sauimone
fixed example paths in doc
r496 \snippet ../examples/areachart/main.cpp 3
Michal Klocek
Adds area chart...
r421
Michal Klocek
minor. formating
r422 In the end we create QChartView instance, set title, set anti-aliasing and add area series. We also set the specific range for axes.
Michal Klocek
Adds area chart...
r421
sauimone
fixed example paths in doc
r496 \snippet ../examples/areachart/main.cpp 4
Michal Klocek
Adds area chart...
r421
Chart is ready to be shown.
sauimone
fixed example paths in doc
r496 \snippet ../examples/areachart/main.cpp 5
Michal Klocek
Adds area chart...
r421
*/