-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhighcharts-3dpieData.html
44 lines (44 loc) · 1.01 KB
/
highcharts-3dpieData.html
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
{
"chart": {
"type": "pie",
"options3d": {
"enabled": true,
"alpha": 45,
"beta": 0
}
},
"title": {
"text": "Browser market shares at a specific website, 2014"
},
"tooltip": {
"pointFormat": "{series.name}: <b>{point.percentage:.1f}%</b>"
},
"plotOptions": {
"pie": {
"allowPointSelect": true,
"cursor": "pointer",
"depth": 35,
"dataLabels": {
"enabled": true,
"format": "{point.name}"
}
}
},
"series": [{
"type": "pie",
"name": "Browser share",
"data": [
["Firefox", 45.0],
["IE", 26.8],
{
"name": "Chrome",
"y": 12.8,
"sliced": true,
"selected": true
},
["Safari", 8.5],
["Opera", 6.2],
["Others", 0.7]
]
}]
}