##// END OF EJS Templates
another documentation fix
sauimone -
r493:5c7c3a71db52
parent child
Show More
@@ -1,39 +1,39
1 /*!
1 /*!
2 \example examples/barchart
2 \example example/barchart
3 \title BarChart Example
3 \title BarChart Example
4 \subtitle
4 \subtitle
5
5
6 The example shows how to create simple bar chart. Barchart shows the data in sets as separate bars, which are grouped in categories.
6 The example shows how to create simple bar chart. Barchart shows the data in sets as separate bars, which are grouped in categories.
7
7
8 \image barchart.png
8 \image barchart.png
9
9
10 First we define categories.
10 First we define categories.
11
11
12 \snippet ../examples/barchart/main.cpp 1
12 \snippet ../examples/barchart/main.cpp 1
13
13
14 Data that barchart visualizes, is defined by QBarSet instances. Here we create some sets and append data
14 Data that barchart visualizes, is defined by QBarSet instances. Here we create some sets and append data
15 we want to visulaize to them.
15 we want to visulaize to them.
16
16
17 \snippet ../examples/barchart/main.cpp 2
17 \snippet ../examples/barchart/main.cpp 2
18
18
19 To combine the sets and categories to a chart, we need to create QBarSeries instance. When creating
19 To combine the sets and categories to a chart, we need to create QBarSeries instance. When creating
20 the QBarSeries, the categories must be known. Sets can be added later. For example purposes the sets
20 the QBarSeries, the categories must be known. Sets can be added later. For example purposes the sets
21 are added to series here.
21 are added to series here.
22
22
23 \snippet ../examples/barchart/main.cpp 3
23 \snippet ../examples/barchart/main.cpp 3
24
24
25 We want our barchart to behave so, that when mouse is hovered over bar, the name of set which the bar
25 We want our barchart to behave so, that when mouse is hovered over bar, the name of set which the bar
26 represents is shown as tooltip.
26 represents is shown as tooltip.
27 Also when we click the bar, floating values for the set are toggled. Floating values are the data values
27 Also when we click the bar, floating values for the set are toggled. Floating values are the data values
28 that are drawn on top of bars.
28 that are drawn on top of bars.
29
29
30 \snippet ../examples/barchart/main.cpp 4
30 \snippet ../examples/barchart/main.cpp 4
31
31
32 Here we create the view and add our series to it. Also we set the title and theme we want our chart to use
32 Here we create the view and add our series to it. Also we set the title and theme we want our chart to use
33
33
34 \snippet ../examples/barchart/main.cpp 5
34 \snippet ../examples/barchart/main.cpp 5
35
35
36 For barchart, we don't need X-axis to be visible, so it can be disabled.
36 For barchart, we don't need X-axis to be visible, so it can be disabled.
37
37
38 \snippet ../examples/barchart/main.cpp 6
38 \snippet ../examples/barchart/main.cpp 6
39 */ No newline at end of file
39 */
@@ -1,39 +1,39
1 /*!
1 /*!
2 \example examples/percentbarchart
2 \example example/percentbarchart
3 \title PercentBarChart Example
3 \title PercentBarChart Example
4 \subtitle
4 \subtitle
5
5
6 The example shows how to create simple percent bar chart. Percent bar chart shows the data in set as percentage of all sets, per category.
6 The example shows how to create simple percent bar chart. Percent bar chart shows the data in set as percentage of all sets, per category.
7
7
8 \image percentbarchart.png
8 \image percentbarchart.png
9
9
10 First we define categories.
10 First we define categories.
11
11
12 \snippet ../examples/percentbarchart/main.cpp 1
12 \snippet ../examples/percentbarchart/main.cpp 1
13
13
14 Data that barchart visualizes, is defined by QBarSet instances. Here we create some sets and append data
14 Data that barchart visualizes, is defined by QBarSet instances. Here we create some sets and append data
15 we want to visulaize to them.
15 we want to visulaize to them.
16
16
17 \snippet ../examples/percentbarchart/main.cpp 2
17 \snippet ../examples/percentbarchart/main.cpp 2
18
18
19 To combine the sets and categories to a chart, we need to create QBarSeries instance. When creating
19 To combine the sets and categories to a chart, we need to create QBarSeries instance. When creating
20 the QBarSeries, the categories must be known. Sets can be added later. For example purposes the sets
20 the QBarSeries, the categories must be known. Sets can be added later. For example purposes the sets
21 are added to series here.
21 are added to series here.
22
22
23 \snippet ../examples/percentbarchart/main.cpp 3
23 \snippet ../examples/percentbarchart/main.cpp 3
24
24
25 We want our barchart to behave so, that when mouse is hovered over bar, the name of set which the bar
25 We want our barchart to behave so, that when mouse is hovered over bar, the name of set which the bar
26 represents is shown as tooltip.
26 represents is shown as tooltip.
27 Also when we click the bar, floating values for the set are toggled. Floating values are the data values
27 Also when we click the bar, floating values for the set are toggled. Floating values are the data values
28 that are drawn on top of bars.
28 that are drawn on top of bars.
29
29
30 \snippet ../examples/percentbarchart/main.cpp 4
30 \snippet ../examples/percentbarchart/main.cpp 4
31
31
32 Here we create the view and add our series to it. Also we set the title and theme we want our chart to use
32 Here we create the view and add our series to it. Also we set the title and theme we want our chart to use
33
33
34 \snippet ../examples/percentbarchart/main.cpp 5
34 \snippet ../examples/percentbarchart/main.cpp 5
35
35
36 For barchart, we don't need X-axis to be visible, so it can be disabled.
36 For barchart, we don't need X-axis to be visible, so it can be disabled.
37
37
38 \snippet ../examples/percentbarchart/main.cpp 6
38 \snippet ../examples/percentbarchart/main.cpp 6
39 */ No newline at end of file
39 */
@@ -1,42 +1,42
1 /*!
1 /*!
2 \example examples/stackedbarchartdrilldown
2 \example example/stackedbarchartdrilldown
3 \title StackedBarChart Drilldown Example
3 \title StackedBarChart Drilldown Example
4 \subtitle
4 \subtitle
5
5
6 The example shows how to implement drilldown using stacked barchart. In drilldown example we create stacked barchart, which shows the harvest of various chili peppers during season. In season view the harvest is grouped by month. To drill down to weekly view, user clicks selected month with right mouse button. On weekly view, the harvest of clicked month is shown by week. For example purposes each month is 4 weeks long :)
6 The example shows how to implement drilldown using stacked barchart. In drilldown example we create stacked barchart, which shows the harvest of various chili peppers during season. In season view the harvest is grouped by month. To drill down to weekly view, user clicks selected month with right mouse button. On weekly view, the harvest of clicked month is shown by week. For example purposes each month is 4 weeks long :)
7
7
8 Season view looks like this:
8 Season view looks like this:
9 \image stackedbarchart_drilldown_season.png
9 \image stackedbarchart_drilldown_season.png
10
10
11 Right mouse button clicked on august, shows the harvest from august:
11 Right mouse button clicked on august, shows the harvest from august:
12 \image stackedbarchart_drilldown_august.png
12 \image stackedbarchart_drilldown_august.png
13
13
14 Here we define a drilldown series, which adds mapping for categories to other drilldown series.
14 Here we define a drilldown series, which adds mapping for categories to other drilldown series.
15 Purpose of drilldown series is to contain knowledge of the drilldown structure. The mapDrilldownSeries function maps the category to given series. We can ask the mapping for category with drilldownSeries(QString category) function.
15 Purpose of drilldown series is to contain knowledge of the drilldown structure. The mapDrilldownSeries function maps the category to given series. We can ask the mapping for category with drilldownSeries(QString category) function.
16
16
17 \snippet ../examples/stackedbarchartdrilldown/main.cpp 1
17 \snippet ../examples/stackedbarchartdrilldown/main.cpp 1
18
18
19 To enable drilldown we create own view, which implements handler for right click. All QBarSeries derived classes send out rightClicked(QBarSet*, QString) signal when series is clicked with right mouse button. The parameters QBarSet and QString contain the pointer to clicked bar set and name of category, where click occured.
19 To enable drilldown we create own view, which implements handler for right click. All QBarSeries derived classes send out rightClicked(QBarSet*, QString) signal when series is clicked with right mouse button. The parameters QBarSet and QString contain the pointer to clicked bar set and name of category, where click occured.
20
20
21 In our DrilldownChart we implement handler, which selects the drilldown chart with the category.
21 In our DrilldownChart we implement handler, which selects the drilldown chart with the category.
22
22
23 \snippet ../examples/stackedbarchartdrilldown/main.cpp 2
23 \snippet ../examples/stackedbarchartdrilldown/main.cpp 2
24
24
25 Here we define data, which we use to construct the chart.
25 Here we define data, which we use to construct the chart.
26
26
27 \snippet ../examples/stackedbarchartdrilldown/main.cpp 3
27 \snippet ../examples/stackedbarchartdrilldown/main.cpp 3
28
28
29 To create the drilldown structure, we first create our top level series, which we call seasonSeries. For each month in seasonSeries we create a drilldown series, called weeklySeries which contains more detailed data for that month.
29 To create the drilldown structure, we first create our top level series, which we call seasonSeries. For each month in seasonSeries we create a drilldown series, called weeklySeries which contains more detailed data for that month.
30 In weeklySeries, we use the drilldown handler to bring us back to seasonSeries. To do this we add mapping to the series. The seasonSeries is mapped to weeklySeries for each month. Every weeklySeries is mapped back to the seasonSeries.
30 In weeklySeries, we use the drilldown handler to bring us back to seasonSeries. To do this we add mapping to the series. The seasonSeries is mapped to weeklySeries for each month. Every weeklySeries is mapped back to the seasonSeries.
31 To make mapping work, we connect the rightClicked signals from our series to the drilldownChart.
31 To make mapping work, we connect the rightClicked signals from our series to the drilldownChart.
32
32
33 \snippet ../examples/stackedbarchartdrilldown/main.cpp 4
33 \snippet ../examples/stackedbarchartdrilldown/main.cpp 4
34
34
35 When we have our drilldown structure ready, we can add the data to it. Here we generate random crop for each plant in each week. The monthly crop is calculated from weekly crops. To enable floating values, we connect the clicked signal to toggle the value of corresponding set.
35 When we have our drilldown structure ready, we can add the data to it. Here we generate random crop for each plant in each week. The monthly crop is calculated from weekly crops. To enable floating values, we connect the clicked signal to toggle the value of corresponding set.
36
36
37 \snippet ../examples/stackedbarchartdrilldown/main.cpp 5
37 \snippet ../examples/stackedbarchartdrilldown/main.cpp 5
38
38
39 Here we set the chart to show top level series initially.
39 Here we set the chart to show top level series initially.
40
40
41 \snippet ../examples/stackedbarchartdrilldown/main.cpp 6
41 \snippet ../examples/stackedbarchartdrilldown/main.cpp 6
42 */ No newline at end of file
42 */
General Comments 0
You need to be logged in to leave comments. Login now