Domanda

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.

È stato utile?

Soluzione

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)
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top