##// END OF EJS Templates
Fix some docs issues...
Miikka Heikkinen -
r2591:e2012dc8fe89
parent child
Show More
@@ -40,15 +40,15 Rectangle {
40 }
40 }
41 CategoryRange {
41 CategoryRange {
42 label: "low"
42 label: "low"
43 endValue: 4
43 endValue: 7
44 }
44 }
45 CategoryRange {
45 CategoryRange {
46 label: "normal"
46 label: "normal"
47 endValue: 7
47 endValue: 12
48 }
48 }
49 CategoryRange {
49 CategoryRange {
50 label: "high"
50 label: "high"
51 endValue: 15
51 endValue: 18
52 }
52 }
53 CategoryRange {
53 CategoryRange {
54 label: "extremely high"
54 label: "extremely high"
@@ -22,8 +22,8 import QtQuick 1.0
22
22
23 Item {
23 Item {
24 id: container
24 id: container
25 width: 400
25 width: 800
26 height: 300
26 height: 600
27 Component.onCompleted: {
27 Component.onCompleted: {
28 var co = Qt.createComponent("main.qml")
28 var co = Qt.createComponent("main.qml")
29 if (co.status == Component.Ready) {
29 if (co.status == Component.Ready) {
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
@@ -52,7 +52,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
52 */
52 */
53 /*!
53 /*!
54 \qmlclass Legend QLegend
54 \qmlclass Legend QLegend
55 \brief Legend is part of QtCommercial Chart QML API.
55 \brief Legend is part of Qt Chart QML API.
56
56
57 Legend is a graphical object, whics displays legend of the chart. Legend state is updated by ChartView, when
57 Legend is a graphical object, whics displays legend of the chart. Legend state is updated by ChartView, when
58 series have been changed. Legend is used via ChartView class. For example:
58 series have been changed. Legend is used via ChartView class. For example:
@@ -35,7 +35,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
35
35
36 /*!
36 /*!
37 \class QPieSeries
37 \class QPieSeries
38 \brief Pie series API for QtCommercial Charts.
38 \brief Pie series API for Qt Charts.
39
39
40 The pie series defines a pie chart which consists of pie slices which are defined as QPieSlice objects.
40 The pie series defines a pie chart which consists of pie slices which are defined as QPieSlice objects.
41 The slices can have any values as the QPieSeries will calculate its relative value to the sum of all slices.
41 The slices can have any values as the QPieSeries will calculate its relative value to the sum of all slices.
@@ -33,7 +33,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
33
33
34 /*!
34 /*!
35 \class QAbstractSeries
35 \class QAbstractSeries
36 \brief Base class for all QtCommercial Chart series.
36 \brief Base class for all Qt Chart series.
37 \mainclass
37 \mainclass
38
38
39 Usually you use the series type specific inherited classes instead of the base class.
39 Usually you use the series type specific inherited classes instead of the base class.
@@ -70,7 +70,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
70
70
71 /*!
71 /*!
72 \class QChart
72 \class QChart
73 \brief Qt Enterprise Chart API.
73 \brief Main chart API for Qt Charts.
74
74
75 QChart is a QGraphicsWidget that you can show in a QGraphicsScene. It manages the graphical
75 QChart is a QGraphicsWidget that you can show in a QGraphicsScene. It manages the graphical
76 representation of different types of series and other chart related objects like legend and
76 representation of different types of series and other chart related objects like legend and
@@ -34,7 +34,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
34
34
35 /*!
35 /*!
36 \class QPolarChart
36 \class QPolarChart
37 \brief Qt Enterprise Chart API.
37 \brief Polar chart API for Qt Charts.
38
38
39 QPolarChart is a specialization of QChart to show a polar chart.
39 QPolarChart is a specialization of QChart to show a polar chart.
40
40
General Comments 0
You need to be logged in to leave comments. Login now