-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathacasfsd
71 lines (69 loc) · 1.76 KB
/
acasfsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
var chart = AmCharts.makeChart("chartdiv", {
"type": "serial",
"theme": "none",
"pathToImages": "http://www.amcharts.com/lib/3/images/",
"dataProvider": [{
"score":"0"
"count":12
},{
"score":"1"
"count":5
},{
"score":"2"
"count":1
},{
"score":"3"
"count":15
},{
"score":"4"
"count":9
},{
"score":"5"
"count":4
},{
"score":"6"
"count":17
},{
"score":"7
"count":15
},{
"score":"8"
"count":5
},{
"score":"9"
"count":6
},{
"score":"10"
"count":1
}
],
"valueAxes": [{
"dashLength": 4,
"position": "left",
"title" : "title",
"fillAlphas": 0.9,
"lineAlpha": 0.2
}],
"graphs": [{
"bulletSize": 14,
"customBullet": "http://www.amcharts.com/lib/3/images/star.png",
"customBulletField": "customBullet",
"type": "line",
"valueField": "count"
}],
"marginTop": 20,
"marginRight": 20,
"marginLeft": 40,
"marginBottom": 20,
"chartCursor": {graphBulletSize:1.5},
"autoMargins": false,
"categoryField": "score",
"exportConfig": {
"menuTop": "20px",
"menuRight": "20px",
"menuItems": [{
"icon": 'http://www.amcharts.com/lib/3/images/export.png',
"format": 'png'
}]
}
});