HumbleSoftware / Flotr2

Graphs and Charts for Canvas in JavaScript.

Home Page:http://www.humblesoftware.com/flotr2/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Minor tick calculation

alesl opened this issue · comments

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) {