Skip to content

Instantly share code, notes, and snippets.

@digi0ps
Last active February 25, 2018 09:11
Show Gist options
  • Save digi0ps/c415affb7f8d51a19b8ab9715818a862 to your computer and use it in GitHub Desktop.
Save digi0ps/c415affb7f8d51a19b8ab9715818a862 to your computer and use it in GitHub Desktop.
Vega-Lite Bl.ocks example
license: bsd-3-clause
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://cdn.jsdelivr.net/npm/vega@3"></script>
<script src="https://cdn.jsdelivr.net/npm/vega-lite@2"></script>
<script src="https://cdn.jsdelivr.net/npm/vega-embed@3"></script>
<style>
body {
font-family: sans-serif;
}
.vega-actions a {
padding: 0.2em;
}
</style>
</head>
<body>
<div id="vis"></div>
<script>
const spec = "neg_bar.vl.json";
vegaEmbed('#vis', spec).catch(console.warn);
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment