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 data
4
var data = [
5
{x: "A", value: 637166},
6
{x: "B", value: 721630},
7
{x: "C", value: 148662},
8
{x: "D", value: 78662},
9
{x: "E", value: 90000}
10
];
11
12
// create a stage
13
stage = anychart.graphics.create("container");
14
15
// set the position and data for the first pie chart
16
var pie1 = anychart.pie(data);
17
pie1.title("Radius: Default");
18
pie1.bounds(0, 0, "50%", "100%");
19
formatPie(pie1);
20
21
// set the position and data for the second pie chart
22
var pie2 = anychart.pie(data);
23
pie2.title("Radius: 30%");
24
pie2.bounds("50%", 0, "50%", "100%");
25
formatPie(pie2);
26
// set the radius
27
pie2.radius("30%");
28
});
29
30
/* a helper function for configuring
31
and drawing pie charts*/
32
function formatPie(pie){
33
// disable the legend
34
pie.legend(false);
35
// set the chart container
36
pie.container(stage);
37
// initiate drawing the chart
38
pie.draw();
39
};