import AchoViz from '../../src'; import { data } from './data'; console.log('Scatter data: ', data); const margin = { top: 10, right: 30, bottom: 30, left: 60 }; const opts = { height: 400, width: 460, data, margin }; const scatter = new AchoViz.Scatter({ ...opts, elementId: '#scatter' }); scatter.render();