summaryrefslogtreecommitdiffstats
path: root/src/charts/doc/src/examples-donutbreakdown.qdoc
blob: 820bff8d70b4997067431d7401495647704f9069 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/******************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the Qt Charts module.
**
** $QT_BEGIN_LICENSE:COMM$
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** $QT_END_LICENSE$
**
******************************************************************************/

/*!
     \example donutbreakdown
     \title Donut Chart Breakdown Example
     \ingroup qtcharts_examples

     \brief This example shows how to use create a donut breakdown chart using QPieSeries API.
     \image examples_donutbreakdown.png

     Let's start by defining some data for the chart.

     \snippet donutbreakdown/main.cpp 1

     Then we create a chart where we add the data. Note that this is our own chart derived from QChart.

     \snippet donutbreakdown/main.cpp 2

     Our own chart works in such a way that we create a main series in the constructor we create a main series,
     which aggregates the data provided by the breakdown series. This is the piechart in the center.

     \snippet donutbreakdown/donutbreakdownchart.cpp 1

     When a breakdown series is added the data is used to create a slice in the main series and the
     breakdown series itself is used to create a segment of a donut positioned so that it is aligned
     with the corresponding slice in the main series.

     \snippet donutbreakdown/donutbreakdownchart.cpp 2

     Here's how the start and end angles for the donut segments are calculated.

     \snippet donutbreakdown/donutbreakdownchart.cpp 3

     The legend markers are customized to show the breakdown percentage. The markers for the main level slices are hidden.

     \snippet donutbreakdown/donutbreakdownchart.cpp 4

     Instead the main level slices show the percentage on the label.

     \snippet donutbreakdown/mainslice.cpp 1
     \snippet donutbreakdown/mainslice.cpp 2

     Now that we have our chart defined, we can finally create a QChartView and show the chart.

     \snippet donutbreakdown/main.cpp 3

*/