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

Crosshair ghosting is back after Chrome 59 update

maeeast opened this issue · comments

I had a graph that was working fine before my chrome updated (and is still working fine in IE and FF). In chrome 59 the crosshair ghosting issue has returned. Does anyone know what in the chrome update broke this or have a fix for it?

I fixed the issue in my deployment of flotr2.js by changing:
5316 octx.save();
5317 octx.strokeStyle = options.color;
5318 octx.lineWidth = 1;
5319 octx.beginPath();

to

5316 octx.save();
5317 octx.strokeStyle = options.color;
5318 octx.lineWidth = .5;
5319 octx.beginPath();

That seems to fix the issue with the crosshair path leaving a trail.