How do I add text labels to axes in d3?
For instance, I have a simple line graph with an x and y axis.
On my x-axis, I have ticks from 1 to 10. I want the wo
chart.xAxis.axisLabel('Label here');
or
xAxis: { axisLabel: 'Label here' },