-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.js
More file actions
26 lines (21 loc) · 816 Bytes
/
Copy pathapp.js
File metadata and controls
26 lines (21 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// import { mountBarChart, BarChart } from './src/example';
import { mountConnectMap, ConnectMap } from './src/map';
import { mountScatterPlot, ScatterPlot } from "./src/scatterplot";
import { mountParallel, Parallel } from "./src/parallel";
import './style.css';
// You can manage your layout through CSS, or this template also has materialize library supported.
// Materialize: https://materializecss.com/getting-started.html
document.querySelector('#app').innerHTML = `
<div id='main-container' class='d-flex flex-row flex-nowrap'>
<div id='left-container' class='d-flex flex-column flex-nowrap'>
${ConnectMap()}
</div>
<div id='right-container' class='d-flex flex-column flex-nowrap'>
${ScatterPlot()}
${Parallel()}
</div>
</div>
`
mountConnectMap();
mountParallel();
mountScatterPlot();