Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
776 lars 1
<html>
2
 
3
    <head>
4
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
6
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
7
        <!-- AmCharts includes -->
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
        <!-- Export plugin includes and styles -->
11
        <script src="../export.js"></script>
12
        <link type="text/css" href="../export.css" rel="stylesheet">
13
        <style>
14
            body,
15
            html {
16
                height: 100%;
17
                padding: 0;
18
                margin: 0;
19
                overflow: hidden;
20
                font-size: 11px;
21
                font-family: Verdana;
22
            }
23
 
24
            #chartdiv {
25
                width: 100%;
26
                height: 100%;
27
            }
28
        </style>
29
        <script type="text/javascript">
30
            var chart = AmCharts.makeChart("chartdiv",
31
            {
32
                "type": "pie",
33
                "dataProvider": [
34
                {
35
                    "country": "Czech Republic",
36
                    "litres": 156.9
37
                },
38
                {
39
                    "country": "Ireland",
40
                    "litres": 131.1
41
                },
42
                {
43
                    "country": "Germany",
44
                    "litres": 115.8
45
                },
46
                {
47
                    "country": "Australia",
48
                    "litres": 109.9
49
                },
50
                {
51
                    "country": "Austria",
52
                    "litres": 108.3
53
                },
54
                {
55
                    "country": "UK",
56
                    "litres": 65
57
                },
58
                {
59
                    "country": "Belgium",
60
                    "litres": 50
61
                }],
62
                "titleField": "country",
63
                "valueField": "litres",
64
                "balloonText": "[[title]]<br><span style='font-size:14px'><b>[[value]]</b> ([[percents]]%)</span>",
65
                "innerRadius": "30%",
66
                "legend":
67
                {
68
                    "position": "right",
69
                    "markerType": "circle"
70
                },
71
                "export":
72
                {
73
                    "enabled": true
74
                }
75
            });
76
        </script>
77
    </head>
78
 
79
    <body>
80
        <div id="chartdiv"></div>
81
    </body>
82
 
83
</html>