I am trying to add a maximum number of ticks to the logarithmic scale on the Y Axis, currently it is displaying 30 really bunched together. I would like to limit to around 10 to have some padding in between. I see there is a maxTicksLimit for linear scale, is there any chance this can be added to logarithmic scales?
Version 2.0
Found a work around on this plunker https://jsfiddle.net/olyckne/7ycm5bjg/10/
Options.scales.ticks.userCallback :
function(label, index) { console.log(index); return index %% 5 === 0 ? label: ”;}
Thanks!