Skip to content

Instantly share code, notes, and snippets.

@JakenHerman
Created December 8, 2020 04:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JakenHerman/ab69f67e3215b75202776a31ebe6f7e8 to your computer and use it in GitHub Desktop.
Save JakenHerman/ab69f67e3215b75202776a31ebe6f7e8 to your computer and use it in GitHub Desktop.
const lines = svg.selectAll('line')
.data(percentileData)
.enter()
.append('line')
.style('stroke', 'rgb(155, 155, 155)')
.style('stroke-width', 2)
.attr('x1', 10)
.attr('x2', 160)
.attr('y1', d => d.cy)
.attr('y2', d => d.cy);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment