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("No Sorting");
18
pie1.bounds(0, 0, "33.3%", "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("Ascending Order");
24
pie2.bounds("33.3%", 0, "33.3%", "100%");
25
formatPie(pie2);
26
// set the sorting mode
27
pie2.sort("asc");
28
29
// set the position and data for the third pie
30
var pie3 = anychart.pie(data);
31
pie3.title("Descending Order");
32
pie3.bounds("66.6%", 0, "33.3%", "100%");
33
formatPie(pie3);
34
// set the sorting mode
35
pie3.sort("desc");
36
});
37
38
/* a helper function for configuring
39
and drawing pie charts*/
40
function formatPie(pie){
41
// disable the legend
42
pie.legend(false);
43
// set the chart container
44
pie.container(stage);
45
// initiate drawing the chart
46
pie.draw();
47
};