Subversion-Projekte lars-tiefland.cienc

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
5 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/funnel.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": "funnel",
33
                "dataProvider": [
34
                {
35
                    "title": "Website visits",
36
                    "value": 200
37
                },
38
                {
39
                    "title": "Downloads",
40
                    "value": 123
41
                },
42
                {
43
                    "title": "Requested price list",
44
                    "value": 98
45
                },
46
                {
47
                    "title": "Contaced for more info",
48
                    "value": 72
49
                },
50
                {
51
                    "title": "Purchased",
52
                    "value": 35
53
                },
54
                {
55
                    "title": "Contacted for support",
56
                    "value": 35
57
                },
58
                {
59
                    "title": "Purchased additional products",
60
                    "value": 26
61
                }],
62
                "balloon":
63
                {
64
                    "fixedPosition": true
65
                },
66
                "legend":
67
                {},
68
                "valueField": "value",
69
                "titleField": "title",
70
                "marginRight": 240,
71
                "marginLeft": 50,
72
                "startX": -500,
73
                "depth3D": 100,
74
                "angle": 40,
75
                "outlineAlpha": 1,
76
                "outlineColor": "#FFFFFF",
77
                "outlineThickness": 2,
78
                "labelPosition": "right",
79
                "balloonText": "[[title]]: [[value]]n[[description]]",
80
                "export":
81
                {
82
                    "enabled": true
83
                }
84
            });
85
        </script>
86
    </head>
87
 
88
    <body>
89
        <div id="chartdiv"></div>
90
    </body>
91
 
92
</html>