##// END OF EJS Templates
Add missing QML types to the documentation...
Titta Heikkala -
r2727:d7bc4e870cdd
parent child
Show More
@@ -8,13 +8,17 project = Qt Charts
8 description = Qt Charts Reference Documentation
8 description = Qt Charts Reference Documentation
9 version = 2.0.0
9 version = 2.0.0
10
10
11 sourcedirs += ..
11 sourcedirs += .. \
12 headerdirs += ..
12 ../../chartsqml2
13 headerdirs += .. \
14 ../../chartsqml2
13 exampledirs += ../../../examples/charts \
15 exampledirs += ../../../examples/charts \
14 snippets
16 snippets
15 imagedirs += images
17 imagedirs += images
16 examplesinstallpath = charts
18 examplesinstallpath = charts
17
19
20 sources.fileextensions = "*.cpp *.qdoc"
21
18 indexes += $QT_INSTALL_DOCS/qtcore/qtcore.index \
22 indexes += $QT_INSTALL_DOCS/qtcore/qtcore.index \
19 $QT_INSTALL_DOCS/qtgui/qtgui.index \
23 $QT_INSTALL_DOCS/qtgui/qtgui.index \
20 $QT_INSTALL_DOCS/qtqml/qtqml.index \
24 $QT_INSTALL_DOCS/qtqml/qtqml.index \
@@ -30,6 +30,8 QT_CHARTS_BEGIN_NAMESPACE
30 \instantiates QBoxSet
30 \instantiates QBoxSet
31 \inqmlmodule QtCharts
31 \inqmlmodule QtCharts
32
32
33 \brief Building block for box-and-whiskers chart.
34
33 BoxSet represents one box-and-whiskers item. It takes five values to create a graphical
35 BoxSet represents one box-and-whiskers item. It takes five values to create a graphical
34 representation of range and three medians. There are two ways to give the values. The first one
36 representation of range and three medians. There are two ways to give the values. The first one
35 is with constructor or with append method. In these the values have to be given in the following
37 is with constructor or with append method. In these the values have to be given in the following
@@ -103,6 +105,8 QT_CHARTS_BEGIN_NAMESPACE
103
105
104 \inherits AbstractSeries
106 \inherits AbstractSeries
105
107
108 \brief Series for creating box-and-whiskers chart.
109
106 BoxPlotSeries represents a series of data shown as box-and-whiskers bars. The purpose of this
110 BoxPlotSeries represents a series of data shown as box-and-whiskers bars. The purpose of this
107 class is to act as a container for single box-and-whiskers items. Each item is drawn to own
111 class is to act as a container for single box-and-whiskers items. Each item is drawn to own
108 slot. If chart includes multiple instances of BoxPlotSeries then box-and-whiskers items with the
112 slot. If chart includes multiple instances of BoxPlotSeries then box-and-whiskers items with the
@@ -55,6 +55,8 QT_CHARTS_BEGIN_NAMESPACE
55 \instantiates DeclarativeChart
55 \instantiates DeclarativeChart
56 \inqmlmodule QtCharts
56 \inqmlmodule QtCharts
57
57
58 \brief Chart element.
59
58 ChartView element is the parent that is responsible for showing different chart series types.
60 ChartView element is the parent that is responsible for showing different chart series types.
59
61
60 The following QML shows how to create a simple chart with one pie series:
62 The following QML shows how to create a simple chart with one pie series:
@@ -28,6 +28,8 QT_CHARTS_BEGIN_NAMESPACE
28 \qmltype Margins
28 \qmltype Margins
29 \inqmlmodule QtCharts
29 \inqmlmodule QtCharts
30
30
31 \brief Type is used to define margins.
32
31 Uncreatable type that is used to define top, bottom, left and right margins.
33 Uncreatable type that is used to define top, bottom, left and right margins.
32 */
34 */
33
35
@@ -28,6 +28,8 QT_CHARTS_BEGIN_NAMESPACE
28 \instantiates DeclarativePolarChart
28 \instantiates DeclarativePolarChart
29 \inqmlmodule QtCharts
29 \inqmlmodule QtCharts
30
30
31 \brief Polar chart element.
32
31 PolarChartView element is the parent that is responsible for showing different chart series
33 PolarChartView element is the parent that is responsible for showing different chart series
32 types in a polar chart.
34 types in a polar chart.
33
35
@@ -27,6 +27,8 QT_CHARTS_BEGIN_NAMESPACE
27 \qmltype XYPoint
27 \qmltype XYPoint
28 \inqmlmodule QtCharts
28 \inqmlmodule QtCharts
29
29
30 \brief Type is used to initialize XY-series coordinate data.
31
30 XYPoint is a convenience element for initializing XY-series with static coordinate data. To
32 XYPoint is a convenience element for initializing XY-series with static coordinate data. To
31 manipulate an XY-series dynamically, use it's data manipulation functions instead.
33 manipulate an XY-series dynamically, use it's data manipulation functions instead.
32 \sa LineSeries, AreaSeries, ScatterSeries, SplineSeries
34 \sa LineSeries, AreaSeries, ScatterSeries, SplineSeries
General Comments 0
You need to be logged in to leave comments. Login now