mirror of https://github.com/sveltejs/svelte
24 lines
438 B
24 lines
438 B
<script>
|
|
import Scatterplot from './Scatterplot.svelte';
|
|
import data from './data.js';
|
|
</script>
|
|
|
|
<style>
|
|
.chart {
|
|
width: 100%;
|
|
max-width: 640px;
|
|
height: calc(100% - 4em);
|
|
min-height: 280px;
|
|
max-height: 480px;
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|
|
|
|
<div class="chart">
|
|
<h2>Anscombe's quartet</h2>
|
|
|
|
<Scatterplot points={data.a}/>
|
|
<Scatterplot points={data.b}/>
|
|
<Scatterplot points={data.c}/>
|
|
<Scatterplot points={data.d}/>
|
|
</div> |