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: "Pacman", value: 400, fill: "#ffff00", hatchFill: "percent50"},
6
{x: "Not Pacman", value: 130, fill: "#404040"},
7
];
8
9
// create a chart and set the data
10
var chart = anychart.pie(data);
11
12
// set the start angle
13
chart.startAngle(130);
14
15
// set the chart title
16
chart.title("Pie Chart: Appearance (Particular Slices)");
17
18
// disable labels
19
chart.labels(false);
20
21
// set the container id
22
chart.container("container");
23
24
// initiate drawing the chart
25
chart.draw();
26
});