UNPKG

@jpmorganchase/perspective-examples

Version:
41 lines (27 loc) 947 B
<!-- 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. --> <!DOCTYPE html> <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 columns='["Sales"]'> </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>