Open w0ns88 opened 7 years ago
OK I think I found the issue:
The values I was fetching were strings, I changed them to be numbers
As shown above on the axis, some values are repeated. I changed it like so:
tickFormat: function (d) { return d3.format('B ,.0f')(d); }
where "B" is important to include in the format.
I am using the MultiBar Horizontal Chart to display some data about users in my system.
But for some reason, the Horizontal Bars values and the axis values are not in sync.
Anyone know the reason for this? If you need more info I can provide :)