Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
776 lars 1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
<html>
3
 
4
    <head>
5
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
7
        <title>amCharts Responsive Example</title>
8
        <script src="http://www.amcharts.com/lib/3/amcharts.js"></script>
9
        <script src="http://www.amcharts.com/lib/3/pie.js"></script>
10
        <script src="../responsive.min.js"></script>
11
        <style>
12
            body,
13
            html {
14
                height: 100%;
15
                padding: 0;
16
                margin: 0;
17
            }
18
        </style>
19
        <script>
20
            AmCharts.makeChart("chartdiv",
21
            {
22
                "type": "pie",
23
                "dataProvider": [
24
                {
25
                    "country": "Czech Republic",
26
                    "litres": 156.9
27
                },
28
                {
29
                    "country": "Ireland",
30
                    "litres": 131.1
31
                },
32
                {
33
                    "country": "Germany",
34
                    "litres": 115.8
35
                },
36
                {
37
                    "country": "Australia",
38
                    "litres": 109.9
39
                },
40
                {
41
                    "country": "Austria",
42
                    "litres": 108.3
43
                },
44
                {
45
                    "country": "UK",
46
                    "litres": 65
47
                },
48
                {
49
                    "country": "Belgium",
50
                    "litres": 50
51
                }],
52
                "titleField": "country",
53
                "valueField": "litres",
54
                "balloonText": "[[title]]<br><span style='font-size:14px'><b>[[value]]</b> ([[percents]]%)</span>",
55
                "innerRadius": "30%",
56
                "legend":
57
                {
58
                    "align": "center",
59
                    "markerType": "circle"
60
                },
61
                "responsive":
62
                {
63
                    "enabled": true,
64
                    "addDefaultRules": true,
65
                    "rules": [
66
                    {
67
                        "minWidth": 500,
68
                        "overrides":
69
                        {
70
                            "innerRadius": "50%",
71
                        }
72
                    }]
73
                }
74
            });
75
        </script>
76
    </head>
77
 
78
    <body>
79
        <div id="chartdiv" style="width: 100%; height: 100%;"></div>
80
    </body>
81
 
82
</html>