Hello,
I’m running into a weird case where my data looks like this:
{x : -5.68434189e-14, y: 1},
{x: -4.26325641e-14, y: 2},
{x: -2.84217094e-14, y:1},
{x: -1.42108547e-14, y:2},
And a simple plot line works fine. Howerver if I add:
{x: 0, y: 1}
Then the page goes into memory overflow, and eventually dies.
Here is a fiddle: https://jsfiddle.net/m7ztzr5L/
If you uncomment the last datapoint you’ll run into this issue.
Thanks