Reputation: 79
I am using dc.js
, crossfilter.js
to do dimensional charting.
The chart is not correctly displaying the y-axis data i.e. showing 00000, 50000, 00000, 50000 alternatively in the y-axis. I am doing console level logging of the group and it is showing correct value.
I have segregated the problem into a jsfiddle Any clue on what I am doing wrong?
Upvotes: 0
Views: 182
Reputation: 20120
I think it is just clipped because it is too wide. Try setting the margins:
https://github.com/dc-js/dc.js/blob/master/web/docs/api-latest.md#marginsmargins
Upvotes: 2