d3.js 335 B

123456789101112131415161718
  1. d3.select('body')
  2. .append('circle')
  3. .at({ width: 30, fill: '#f0f' })
  4. .st({ fontWeight: 600 })
  5. d3.scaleLinear()
  6. .domain([1950, 1980])
  7. .range([0, width])
  8. not.d3.select('body')
  9. .append('circle')
  10. .at({ width: 30, fill: '#f0f' })
  11. .st({ fontWeight: 600 })
  12. not.d3.scaleLinear()
  13. .domain([1950, 1980])
  14. .range([0, width])