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
                "titles": [
24
                {
25
                    "text": "Visitors countries",
26
                    "size": 16
27
                }],
28
                "dataProvider": [
29
                {
30
                    "country": "United States",
31
                    "visits": 7252
32
                },
33
                {
34
                    "country": "China",
35
                    "visits": 3882
36
                },
37
                {
38
                    "country": "Japan",
39
                    "visits": 1809
40
                },
41
                {
42
                    "country": "Germany",
43
                    "visits": 1322
44
                },
45
                {
46
                    "country": "United Kingdom",
47
                    "visits": 1122
48
                },
49
                {
50
                    "country": "France",
51
                    "visits": 414
52
                },
53
                {
54
                    "country": "India",
55
                    "visits": 384
56
                },
57
                {
58
                    "country": "Spain",
59
                    "visits": 211
60
                }],
61
                "valueField": "visits",
62
                "titleField": "country",
63
                "startEffect": "elastic",
64
                "startDuration": 2,
65
                "labelRadius": 15,
66
                "innerRadius": "50%",
67
                "depth3D": 10,
68
                "balloonText": "[[title]]<br><span style='font-size:14px'><b>[[value]]</b> ([[percents]]%)</span>",
69
                "angle": 15,
70
                "legend":
71
                {
72
                    "position": "right"
73
                },
74
                "responsive":
75
                {
76
                    "enabled": true
77
                }
78
            });
79
        </script>
80
    </head>
81
 
82
    <body>
83
        <div id="chartdiv" style="width: 100%; height: 100%;"></div>
84
    </body>
85
 
86
</html>