HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
3
//create pie chart with passed data
4
var chart = anychart.pie([
5
['Department Stores', 6371664],
6
['Discount Stores', 7216301],
7
['Men\'s/Women\'s Stores', 1486621],
8
['Juvenile Specialty Stores', 786622],
9
['All other outlets', 900000]
10
]);
11
chart.palette(['#82BECA', '#E6D5BC', '#EFECE8', '#C2B6B6', '#786565']);
12
chart.stroke(null);
13
14
//set container id for the chart
15
chart.container('container');
16
17
//set chart title text settings
18
chart.title()
19
.text('ACME Corp. apparel sales through different retail channels')
20
.fontWeight('normal')
21
.fontFamily('Verdana')
22
.fontColor('#474747')
23
.padding(0)
24
.margin([40, 0, 0, 0])
25
.fontSize('14px');
26
chart.radius('43%');
27
28
chart.labels().fontWeight('normal')
29
.fontFamily('Verdana')
30
.fontColor('#474747')
31
.fontSize('14px');
32
33
//set chart predefined aqua style
34
chart.fill('aquaStyle');
35
36
chart.legend().fontWeight('normal')
37
.fontFamily('Verdana')
38
.fontColor('#474747')
39
.padding(15)
40
.margin([0, 0, 40, 0])
41
.fontSize('12px');
42
43
//create empty area in pie chart
44
chart.innerRadius('20%');
45
46
//initiate chart drawing
47
chart.draw();
48
});