forked from trading-peter/chart-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
23 lines (21 loc) · 758 Bytes
/
demo.html
File metadata and controls
23 lines (21 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>chart-elements Demo</title>
<script src="../platform/platform.js"></script>
<link rel="import" href="chart-elements.html">
</head>
<body unresolved>
<chart-pie values="[20, 30, 100]" width="200" height="200">
</chart-pie>
<chart-doughnut values="[30, 50, 100, 40, 120]" width="200" height="200">
</chart-doughnut>
<chart-polar-area values="[30, 90, 18, 58, 82]" width="200" height="200">
</chart-polar-area>
<chart-radar width="200" height="200"></chart-radar>
<br>
<chart-line width="400" height="200"></chart-line>
<chart-bar width="400" height="200"></chart-bar>
</body>
</html>