From 4035b6e7db8b2c9e89c32f8e66129b4667ba4a47 2012-03-07 12:08:10 From: Michal Klocek Date: 2012-03-07 12:08:10 Subject: [PATCH] Adds supported chart types to docs --- diff --git a/doc/src/classes.qdoc b/doc/src/classes.qdoc index 8fc0fe2..5cf1aaa 100644 --- a/doc/src/classes.qdoc +++ b/doc/src/classes.qdoc @@ -5,6 +5,20 @@ Charts API is build on top of Qt Graphics View Framework. Charts can be displayed as QGrsphicsWidget using QChart class. However there is also convenience class QChartView which is QWidget based. These lets quickly use QCharts as normal Qt widget. + Currently API supports following chart types: + + \list + \o area + \o line + \o bar + \o percent bar + \o pie + \o scatter + \o spline + \o stacked bar + \endlist + + Each chart type is represented by QSeries derived class. To create given chart type users have to use instace of releted sereis class and add it to QChart/QChartView instance. \code QLineSeries* series = new QLineSeries();