-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
42 lines (41 loc) · 1.03 KB
/
demo.html
File metadata and controls
42 lines (41 loc) · 1.03 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
40
41
42
<!doctype html>
<html>
<head>
<title>ui-chart</title>
<link rel="import" href="node_modules/polymer/polymer.html">
<link rel="stylesheet" type="text/css" href="node_modules/ui-styles/visual-elements.less">
<link rel="import" href="src/ui-chart.html">
<style>
body {
font-family: "Helvetica Neue", "Helvetica", Arial;
}
#line, #bar {
height: 10em;
width: 20em;
margin-bottom: 1em;
}
</style>
</head>
<body unresolved>
<ui-chart id="line">
<series red>2 4 20 10 40</series>
<series>1 2 10 5 20</series>
</ui-chart>
<ui-chart type="bar" id="bar">
<series red>2 4 20 10 40</series>
<series>1 2 10 5 20</series>
<yaxis grid></yaxis>
<xaxis>
<label>2011</label>
<label>2012</label>
<label>2013</label>
<label>2014</label>
<label>2015</label>
</xaxis>
</ui-chart>
<script>
document.addEventListener('polymer-ready', function() {
})
</script>
</body>
</html>