##// END OF EJS Templates
Adds area chart...
Adds area chart * adds area chart implementation * adds QAreaSeries * adds areachart example * adds documentation * updates "about" , "classes" and "example" documentation pages

File last commit:

r334:d6ea428dc600
r421:fe0a0dc06876
Show More
tutorials.qdoc
26 lines | 952 B | text/plain | TextLexer
/*!
\page tutorials.html
\title Tutorials
\keyword Tutorials
For example, to create a chart with line series using a widget based application:
\snippet ../example/chartview/main.cpp 1
\image chartview_example.jpg
To replace the line series with a pie series you use the dedicated QPieSeries class:
\snippet ../example/chartview/main.cpp 3
\image chartview_example_pie.jpg
To use a scatter series you use QScatterSeries class:
\snippet ../example/chartview/main.cpp 4
\image chartview_example_scatter.jpg
And to show a bar series you use one of the bar series classes, for example QBarChartSeries:
\snippet ../example/chartview/main.cpp 5
\image chartview_example_bar.jpg
If you need to give a more professional touch to your chart you can switch from the default
theme to one of the other themes:
\snippet ../example/chartview/main.cpp 2
\image chartview_example_theme.jpg
*/