@@ -40,15 +40,15 Rectangle { | |||
|
40 | 40 | } |
|
41 | 41 | CategoryRange { |
|
42 | 42 | label: "low" |
|
43 |
endValue: |
|
|
43 | endValue: 7 | |
|
44 | 44 | } |
|
45 | 45 | CategoryRange { |
|
46 | 46 | label: "normal" |
|
47 |
endValue: |
|
|
47 | endValue: 12 | |
|
48 | 48 | } |
|
49 | 49 | CategoryRange { |
|
50 | 50 | label: "high" |
|
51 |
endValue: 1 |
|
|
51 | endValue: 18 | |
|
52 | 52 | } |
|
53 | 53 | CategoryRange { |
|
54 | 54 | label: "extremely high" |
@@ -22,8 +22,8 import QtQuick 1.0 | |||
|
22 | 22 | |
|
23 | 23 | Item { |
|
24 | 24 | id: container |
|
25 |
width: |
|
|
26 |
height: |
|
|
25 | width: 800 | |
|
26 | height: 600 | |
|
27 | 27 | Component.onCompleted: { |
|
28 | 28 | var co = Qt.createComponent("main.qml") |
|
29 | 29 | if (co.status == Component.Ready) { |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
@@ -52,7 +52,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE | |||
|
52 | 52 | */ |
|
53 | 53 | /*! |
|
54 | 54 | \qmlclass Legend QLegend |
|
55 |
\brief Legend is part of Qt |
|
|
55 | \brief Legend is part of Qt Chart QML API. | |
|
56 | 56 | |
|
57 | 57 | Legend is a graphical object, whics displays legend of the chart. Legend state is updated by ChartView, when |
|
58 | 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 | 37 | \class QPieSeries |
|
38 |
\brief Pie series API for Qt |
|
|
38 | \brief Pie series API for Qt Charts. | |
|
39 | 39 | |
|
40 | 40 | The pie series defines a pie chart which consists of pie slices which are defined as QPieSlice objects. |
|
41 | 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 | 35 | \class QAbstractSeries |
|
36 |
\brief Base class for all Qt |
|
|
36 | \brief Base class for all Qt Chart series. | |
|
37 | 37 | \mainclass |
|
38 | 38 | |
|
39 | 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 | 72 | \class QChart |
|
73 | \brief Qt Enterprise Chart API. | |
|
73 | \brief Main chart API for Qt Charts. | |
|
74 | 74 | |
|
75 | 75 | QChart is a QGraphicsWidget that you can show in a QGraphicsScene. It manages the graphical |
|
76 | 76 | representation of different types of series and other chart related objects like legend and |
General Comments 0
You need to be logged in to leave comments.
Login now