Visually explore, understand, and present your data.
Add these to the dependencies
section of your package.json
, then run npm install
:
"@deck.gl/core": "6.4",
"@deck.gl/layers": "6.4",
"@msrvida/sanddance-explorer": "^2",
"luma.gl": "6.4",
"office-ui-fabric-react": "6.204.4",
"vega": "^5.8"
Import these in your JavaScript:
import * as deck from '@deck.gl/core';
import * as layers from '@deck.gl/layers';
import * as luma from 'luma.gl';
import * as fabric from 'office-ui-fabric-react';
import * as vega from 'vega';
import { Explorer, use } from '@msrvida/sanddance-explorer';
fabric.initializeIcons();
use(fabric, vega, deck, layers, luma);
const data = [
{ a: 1, b: "c1" },
{ a: 1, b: "c2" },
{ a: 2, b: "c3" },
{ a: 3, b: "c4" }
];
const explorerProps = {
logoClickUrl: 'https://microsoft.github.io/SandDance/',
mounted: explorer => {
explorer.load(data);
}
};
ReactDOM.render(React.createElement(Explorer, explorerProps), document.getElementById('app'));
Please visit the SandDance website.