@jpmorganchase/perspective-examples
Version:
42 lines (28 loc) • 986 B
HTML
<!--
Copyright (c) 2017, the Perspective Authors.
This file is part of the Perspective library, distributed under the terms of
the Apache License 2.0. The full license can be found in the LICENSE file.
-->
<html>
<head>
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
<script src="perspective.view.js"></script>
<script src="highcharts.plugin.js"></script>
<link rel='stylesheet' href="demo.css">
</head>
<body>
<perspective-viewer
view='line'
columns='["Order Date", "Profit"]'>
</perspective-viewer>
<script>
var xhr = new XMLHttpRequest();
xhr.open('GET', 'superstore.csv', true);
xhr.onload = function () {
document.getElementsByTagName('perspective-viewer')[0].load(xhr.response);
}
xhr.send(null);
</script>
</body>
</html>