-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Infinite loop when data indicates horizontal line #66
Comments
my workaround: add the code below before "this.dirty = true; "
|
I got the similar problem if all of the y-key with zero value, and from the console I found my data looks like this [{"date":"2012-07-01","value":0},{"date":"2012-07-02","value":0},{"date":"2012-07-03","value":0}] @observerss your workaround doesn't work for me, could you paste your full code? |
This is fixed on master now. I also recommend using an |
@oesmith thanks a lot, you save my day |
for data looks like this
var day_data = [
{"period": "2012-10-01", "licensed": 0, "sorned": 0},
{"period": "2012-09-30", "licensed": 0, "sorned": 0},
{"period": "2012-09-29", "licensed": 0, "sorned": 0},
{"period": "2012-09-20", "licensed": 0, "sorned": 0},
{"period": "2012-09-19", "licensed": 0, "sorned": 0},
{"period": "2012-09-18", "licensed": 0, "sorned": 0},
{"period": "2012-09-17", "licensed": 0, "sorned": 0},
{"period": "2012-09-16", "licensed": 0, "sorned": 0},
{"period": "2012-09-15", "licensed": 0, "sorned": 0},
{"period": "2012-09-10", "licensed": 0, "sorned": 0}
];
this.yInterval = 0
drawGrid mehtod will run into a infinite loop.
The text was updated successfully, but these errors were encountered: