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
// donut chart data
4
var data = [
5
["Resurrection Stone", 1],
6
["Cloak of Invisibility", 1],
7
["Elder Wand", 1],
8
];
9
10
// create pie chart and configure it
11
var pie = anychart.pie(data);
12
pie.title("The Deathly Hallows")
13
pie.innerRadius('85%');
14
pie.labels(false);
15
pie.tooltip().format("").separator(false);
16
17
// create a layer and put some shapes in it
18
var layer = anychart.graphics.layer();
19
20
// draw the square
21
layer.rect(25, 50, 350, 300);
22
23
// draw the circle
24
layer.circle(200, 250, 100).stroke(anychart.palettes.defaultPalette[0]);
25
26
// draw the triangle
27
layer.path()
28
.moveTo(25, 350)
29
.lineTo(200, 50)
30
.lineTo(375, 350)
31
.close()
32
.stroke(anychart.palettes.defaultPalette[1]);
33
34
// draw the wand in the middle
35
layer.path()
36
.moveTo(200, 50)
37
.lineTo(200, 350)
38
.stroke(anychart.palettes.defaultPalette[2]);
39
40
// set layer as the center of the chart
41
pie.center().content(layer);
42
// display donut chart
43
pie.container('container').draw();
44
});