Open mkhataei opened 4 years ago
I`m using multiBarChart and set reduceXTicks true. how can I set count of xTicks? this is my result my chart and my code is here
var chart = nv.models.multiBarChart() .duration(350) .reduceXTicks(true) .rotateLabels(-45) .stacked(true) .showControls(false) .groupSpacing(0.3) chart.yAxis.tickFormat(d3.format('f')); d3.select('#chart svg') .datum(prepareData()) .call(chart);
I`m using multiBarChart and set reduceXTicks true. how can I set count of xTicks? this is my result my chart and my code is here