-
Notifications
You must be signed in to change notification settings - Fork 38
Open
Description
I had an issue where some of my numbers did not show
It turned out to be the line
if (val!=last_val || i==series.data.length-1) {
which appears to skip number that have the same number as the previous processed value. However the numbers are not presented in graph order, so I'm not sure what it is trying to achieve.
anyway I replaced this line with
if(true) {
and it worked for my use case..
Metadata
Metadata
Assignees
Labels
No labels