html`<svg viewBox="0 0 ${width} ${height}">
<path d="${line(traffic.data
.filter(function(d) { return d.customer == 'MC000012' && d.service=='enrichment' }))}" fill="none" stroke="steelblue" stroke-width="1.5" stroke-miterlimit="1"></path>
<path d="${line(traffic.data
.filter(function(d) { return d.customer == 'MC000012' && d.service=='correlation' }))}" fill="none" stroke="steelblue" stroke-width="1.5" stroke-miterlimit="1"></path>
<path d="${line(traffic.data
.filter(function(d) { return d.customer == 'MC000012' && d.service=='store' }))}" fill="none" stroke="steelblue" stroke-width="1.5" stroke-miterlimit="1"></path>
<path d="${line(traffic.data.filter(function(d) { return d.customer == 'MC002679' && d.service=='enrichment' }))}" fill="none" stroke="red" stroke-width="1.5" stroke-miterlimit="1"></path>
<path d="${line(traffic.data.filter(function(d) { return d.customer == 'MC002679' && d.service=='store' }))}" fill="none" stroke="orange" stroke-width="1.5" stroke-miterlimit="1"></path>
<path d="${line(traffic.data.filter(function(d) { return d.customer == 'MC002679' && d.service=='correlation' }))}" fill="none" stroke="red" stroke-width="1.5" stroke-miterlimit="1"></path>
${d3.select(svg`<g>`).call(xAxis).node()}
${d3.select(svg`<g>`).call(yAxis).node()}
</svg>`