Minor tick calculation
alesl opened this issue · 0 comments
alesl commented
There is a problem with minor tick calculation in file js/Axis.js, line 272:
for (j = 0; j < o.minorTickFreq && (i * tickSize + j * minorTickSize) < max; ++j) {
it seems condition is wrong and should be:
for (j = 0; j < o.minorTickFreq && (v2 + j * minorTickSize) < max; ++j) {