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
//create pie chart with passed data
3
var chart = anychart.pie([
4
['Department Stores', 6371664],
5
['Discount Stores', 7216301],
6
['Men\'s/Women\'s Stores', 1486621],
7
['Juvenile Specialty Stores', 786622],
8
['All other outlets', 900000]
9
]);
10
//disable legend
11
chart.legend(false);
12
13
//set container id for the chart
14
chart.container('container');
15
//initiate chart drawing
16
chart.draw();
17
});