-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
49 lines (41 loc) · 937 Bytes
/
index.html
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
43
44
45
46
47
48
49
<html>
<head>
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<style>
html {
font-family: 'Roboto', sans-serif;
}
pre {
border-width: 0 !important;
font-size: 1em;
}
body {
padding: 2em;
}
h1 {
text-align: center;
}
.container {
display: flex;
}
.container div {
margin-right: 1em;
}
</style>
</head>
<body>
<h1>Vega-Lite MapD Demo</h1>
<div id="barchart-demo">
<h2>Barchart Example</h2>
<div id="barchart-viz"></div>
<div id="barchart-container" class="container"></div>
</div>
<div id="heatmap-demo">
<h2>Heatmap Example</h2>
<div id="heatmap-viz"></div>
<div id="heatmap-container" class="container"></div>
</div>
<script src="./index.ts"></script>
</body>
</html>