Question

Even if I set

 bChart.x(d3.scale.linear().domain([0, 1000]))

It shows x-axis ticks from -200 or so. I want to remove the negative marks. Please suggest.

Was it helpful?

Solution

I just figured out the problem. It was because of the X-axis padding that I was applying unknowingly to the bChart.

I reset the padding to zero and axis domain becomes as expected.

 bChart.xAxisPadding(0)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top