-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.3 KB
/
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
<html>
<head>
<!-- Import Vega 4 & Vega-Lite 2 (does not have to be from CDN) -->
<script src="https://cdn.jsdelivr.net/npm/vega@4"></script>
<script src="https://cdn.jsdelivr.net/npm/vega-lite@2"></script>
<!-- Import vega-embed -->
<script src="https://cdn.jsdelivr.net/npm/vega-embed@3"></script>
<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;
}
.container {
display: flex; /* time to flex */
}
.container div {
margin-right: 1em;
}
</style>
</head>
<body style="margin: 1em;">
<h1 style="text-align: center">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>