diff --git a/doc/src/classes.qdoc b/doc/src/classes.qdoc index 22a7468..3372848 100644 --- a/doc/src/classes.qdoc +++ b/doc/src/classes.qdoc @@ -5,19 +5,6 @@ Charts API is build on top of Qt Graphics View Framework. Charts can be displayed as QGraphicsWidget using QChart class. However there is also convenience class QChartView which is QWidget based. These lets quickly use QCharts as normal Qt widget. - The API supports following chart types: - - \list - \o line - \o area - \o scatter - \o spline - \o pie - \o grouped bar - \o percent bar - \o stacked bar - \endlist - Each chart type is represented by QAbstractSeries derived class. To create given chart type users have to use instance of related series class and add it to QChart instance. \code diff --git a/doc/src/gettingstarted.qdoc b/doc/src/gettingstarted.qdoc index ccf5cdf..074e636 100644 --- a/doc/src/gettingstarted.qdoc +++ b/doc/src/gettingstarted.qdoc @@ -3,8 +3,6 @@ \title QtCommercial Charts getting started \keyword Introduction - You can obtain the QtCommercial Charts package from \l {http://www.digia.com/en/Qt/Log-in-Customer-Portal/} {Customer portal}. - Compiling: \code qmake CONFIG+=release @@ -14,6 +12,11 @@ Depending on the OS and the compiler you are using "make" might need to be replaced with another command like: nmake, mingw32-make, etc. + To uninstall the QtCommercialCharts run: + \code + make uninstall + \endcode + On Windows platforms both debug and release configurations are built by default at the same time. To build both at the same time on other platforms invoke the following command: @@ -36,18 +39,6 @@ CONFIG += qtcommercialchart \endcode - Or if you have not installed charts after building: - - \code - CHARTSLIB = QtCommercialChart - CONFIG(debug, debug|release) { - mac: CHARTSLIB = $$join(CHARTSLIB,,,_debug) - win32: CHARTSLIB = $$join(CHARTSLIB,,,d) - } - INCLUDEPATH += /include - LIBS += -L/lib -l$$CHARTSLIB - \endcode - \bold {Widget project} To use the QCharts classes add QtCommercialChart namespace macro in your header file. diff --git a/doc/src/index.qdoc b/doc/src/index.qdoc index 998bff5..5f5eba8 100644 --- a/doc/src/index.qdoc +++ b/doc/src/index.qdoc @@ -9,7 +9,7 @@

QCharts is a part of Qt Commercial addons package. It provides a set of easy to use chart components which are available for Qt Commercial customers. It uses Qt Graphics View - Framework, therefore charts can be easily integrated to modern 2D user interfaces. QCharts can + Framework, therefore charts can be easily integrated to modern user interfaces. QCharts can be used as QWidgets, QGraphicsWidget or QML elements. Users can easily create impressive graphs by selecting one of the charts themes.