import AchoViz from '../../src'; import { data } from './data'; const margin = { top: 10, right: 30, bottom: 30, left: 40 }; const opts = { data, height: 400, width: 400, margin }; const boxplot = new AchoViz.BoxPlot({ ...opts, elementId: '#boxplot' }); boxplot.render();