-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.07 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html>
<head>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="node_modules/anychart/dist/css/anychart-ui.min.css">
<link rel="stylesheet" href="node_modules/anychart/dist/fonts/css/anychart-font.min.css">
<script src="node_modules/anychart/dist/js/anychart-base.min.js"></script>
<script src="node_modules/anychart/dist/js/anychart-exports.min.js"></script>
<script src="node_modules/anychart/dist/js/anychart-ui.min.js"></script>
<style>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="container"></div>
<script>
anychart.onDocumentReady(function () {
var chart = anychart.pie([
["Chocolate", 5],
["Rhubarb compote", 2],
["Crêpe Suzette", 2],
["American blueberry", 2],
["Buttermilk", 1]
]);
chart.title("Top 5 pancake fillings");
chart.container("container");
chart.draw();
});
</script>
</body>
</html>