##// END OF EJS Templates
Fixed category handling of barcharts. Now the categories can be undefined. Updated documentation.
Fixed category handling of barcharts. Now the categories can be undefined. Updated documentation.

File last commit:

r979:6c4321224538
r1208:2943560d5819
Show More
examples-areachart.qdoc
30 lines | 927 B | text/plain | TextLexer
/ doc / src / examples-areachart.qdoc
/*!
\example examples/areachart
\title AreaChart Example
\subtitle
The example shows how to create simple area chart.
\image examples_areachart.png
To create area charts, we need two QLineSeries instances. They are going to define upper and lower boundary of the area.
\snippet ../examples/areachart/main.cpp 1
We add data to both series, we use stream operator.
\snippet ../examples/areachart/main.cpp 2
Now we create QAreaSeries instance using two line series objects. We set the custom gradient fill and width of the outline.
\snippet ../examples/areachart/main.cpp 3
In the end we create QChartView instance, set title, set anti-aliasing and add area series. We also set the specific range for axes.
\snippet ../examples/areachart/main.cpp 4
Chart is ready to be shown.
\snippet ../examples/areachart/main.cpp 5
*/