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.

有帮助吗?

解决方案

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)
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top