Alexander Hofstede
Alexander Hofstede
axisystep: 4 doesn't always work either; try setting trendline to [0.83,0.81,0.84,0.84,0.82,0.82,0.83,0.84,0.84,0.8,0.82,0.82]
The problem, i think, lies in snapEnds() I think, around line 760. There: ``` javascript if (t < to) { t = round((to + .5) * Math.pow(10, i)) / Math.pow(10,...
This seems to fix it, ``` javascript if (t < to) { t = round((to + (.5 / Math.pow(10, i))) * Math.pow(10, i)) / Math.pow(10, i); } f = round((from...
I second that
Hi Venzy, I finally went along and implemented my own system for filtering in the meantime. I (naturally) came across many of the issues you describe. The extra data problem...
Axios is as battle-tested as they come. From their [docs](https://github.com/axios/axios#semver): > Until axios reaches a 1.0 release, breaking changes will be released with a new minor version. For example 0.5.1,...
@octref Looks like upstream issue was closed.
@adrilo Did you notice this one? Thanks!
Thanks @mawi12345 - I merged your fixes. Any chance we can get this merged into master?
@mawi12345 Could you sign the CLA as well?