First time:
docker-compose up --build
Start container:
docker-compose up
Exec into container:
docker-compose exec javascript exec
<LineChart
svgProps={{
margin: { top: 80, bottom: 80, left: 80, right: 80 },
width: 600,
height: 400,
}}
axisProps={{
xLabel: 'X Axis',
yLabel: 'Y Axis',
}}
data={data}
strokeWidth={4}
/>
<HeatMap
svgProps={{
margin: { top: 80, bottom: 80, left: 80, right: 80 },
width: 400,
height: 400,
}}
axisProps={{
xLabel: 'X Axis',
yLabel: 'Y Axis',
}}
data={heatMapdata}
strokeWidth={4}
/>
<BarChart
svgProps={{
margin: { top: 80, bottom: 80, left: 80, right: 80 },
width: 600,
height: 400,
}}
axisProps={{
xLabel: 'X Axis',
yLabel: 'Y Axis',
}}
data={data}
strokeWidth={4}
/>
<PieChart
data={data}
pieSize={400}
svgSize={500}
innerRadius={100}
containerId="pie"
/>
<ScatterPlot
svgProps={{
margin: { top: 80, bottom: 80, left: 80, right: 80 },
width: 600,
height: 400,
}}
axisProps={{
xLabel: 'X Axis',
yLabel: 'Y Axis',
}}
data={data}
pointWidth={4}
/>
<AreaChart
svgProps={{
margin: { top: 80, bottom: 80, left: 80, right: 80 },
width: 600,
height: 400,
}}
axisProps={{
xLabel: 'X Axis',
yLabel: 'Y Axis',
}}
data={data}
strokeWidth={4}
/>