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: 80%;
27
                position: relative;
28
            }
29
 
30
            #legenddiv {
31
                width: 100%;
32
                height: 19%;
33
                position: relative;
34
            }
35
        </style>
36
        <script type="text/javascript">
37
            var chart = AmCharts.makeChart("chartdiv",
38
            {
39
                "type": "pie",
40
                "dataProvider": [
41
                {
42
                    "country": "Czech Republic",
43
                    "litres": 156.9
44
                },
45
                {
46
                    "country": "Ireland",
47
                    "litres": 131.1
48
                },
49
                {
50
                    "country": "Germany",
51
                    "litres": 115.8
52
                },
53
                {
54
                    "country": "Australia",
55
                    "litres": 109.9
56
                },
57
                {
58
                    "country": "Austria",
59
                    "litres": 108.3
60
                },
61
                {
62
                    "country": "UK",
63
                    "litres": 65
64
                },
65
                {
66
                    "country": "Belgium",
67
                    "litres": 50
68
                }],
69
                "titleField": "country",
70
                "valueField": "litres",
71
                "balloonText": "[[title]]<br><span style='font-size:14px'><b>[[value]]</b> ([[percents]]%)</span>",
72
                "innerRadius": "30%",
73
                "legend":
74
                {
75
                    "align": "center",
76
                    "markerType": "circle",
77
                    "divId": "legenddiv"
78
                },
79
                "export":
80
                {
81
                    "enabled": true,
82
                    "position": "top-left",
83
                    "legend":
84
                    {
85
                        "position": "bottom"
86
                    }
87
                }
88
            });
89
        </script>
90
    </head>
91
 
92
    <body>
93
        <div id="chartdiv"></div>
94
        <div id="legenddiv"></div>
95
    </body>
96
 
97
</html>