# Scatter Plot
Original D3 demo at https://bl.ocks.org/mbostock/3887118
<template>
<d3-cartesian class="demo" :width="860" :height="450" :x="x" :y="y">
<template #default="props">
<d3-points :data="data" x="sepalWidth" y="sepalLength" :color="colorFn" :size="3.5" v-bind="props"/>
<d3-legend :data="species" label="name" color="color" align="right" :x="800"/>
</template>
<template #south="props">
<d3-axis orientation="Bottom" title="Sepal Width (cm)" v-bind="props"/>
</template>
<template #west="props">
<d3-axis orientation="Left" title="Sepal Length (cm)" v-bind="props"/>
</template>
</d3-cartesian>
</template>
<script>
import * as d3 from 'd3'
export default {
data () {
return {
data: null,
x: { type: 'Linear', domain: [] },
y: { type: 'Linear', domain: [] },
colorFn: null,
species: []
}
},
created () {
d3.tsv('/data/flower-info.tsv', d => {
d.sepalLength = +d.sepalLength
d.sepalWidth = +d.sepalWidth
return d
}).then(data => {
this.x.domain = d3.extent(data, d => d.sepalWidth)
this.y.domain = d3.extent(data, d => d.sepalLength)
this.data = data
const species = [...new Set(data.map(f => f.species))]
const colorScale = d3.scaleOrdinal(d3.schemeCategory10).domain(species)
this.species = species.map(s => {
return { name: s, color: colorScale(s) }
})
this.colorFn = d => colorScale(d.species)
})
}
}
</script>
<style lang="scss" scoped>
.demo /deep/ {
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.point {
stroke: #000;
}
}
</style>
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62