-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
In simplechart.js
if(value < min) {
min = value;
} else if(value > max) {
max = value;
}
should be:
if(value < min) {
min = value;
}
if(value > max) {
max = value;
}
Otherwise data like
var data = {
"2014-01-01": 1116,
"2014-01-02": 12,
}
will not get corret max value (y axis).
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels