nautilytics
1/2/2020 - 3:50 PM

An example of creating an axis using D3

An example of creating an axis using D3

const xAxis = d3.select(‘svg’)
               .append(‘g’)
               .attr(‘class’, ‘axis--x’)
               .call(d3.axisBottom(xScale));