# Missing data

Original D3 demo at https://bl.ocks.org/mbostock/3035090

0.00.10.20.30.40.50.60.70.80.91.0 0.00.10.20.30.40.50.60.70.80.91.0
<template>
  <d3-cartesian class="demo" :margin="margin" :width="860" :height="450" :x="x" :y="y">
    <template #default="props">
      <d3-line :data="data" x="x" y="y" :definedFn="d => d" v-bind="props"/>
      <d3-area :data="data" x="x" y="y" :definedFn="d => d" v-bind="props"/>
      <d3-points :data="filtered" x="x" y="y" :size="3.5" v-bind="props"/>
    </template>
    <template #south="props">
      <d3-axis orientation="Bottom" v-bind="props"/>
    </template>
    <template #west="props">
      <d3-axis orientation="Left" v-bind="props"/>
    </template>
  </d3-cartesian>
</template>

<script>
import * as d3 from 'd3'

export default {
  data () {
    return {
      margin: { top: 30, right: 30, bottom: 30, left: 30 },
      x: { type: 'Linear', domain: [0, 1] },
      y: { type: 'Linear', domain: [0, 1] },
      data: []
    }
  },
  computed: {
    filtered () {
      return this.data.filter(d => d)
    }
  },
  created () {
    this.data = d3.range(40).map(function(i) {
      return i % 5 ? {x: i / 39, y: (Math.sin(i / 3) + 2) / 4} : null;
    })
  }
}
</script>

<style lang="scss" scoped>
.demo /deep/ {
  .area {
    fill: lightsteelblue;
  }
  .line {
    fill: none;
    stroke: steelblue;
    stroke-width: 1.5px;
  }
  .point {
    fill: white;
    stroke: steelblue;
    stroke-width: 1.5px;
  }
}
</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