You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Timelion visualizations don't show any data for a timeframe when there's a division by zero. In those cases, javascript returns a NaN but Timelion doesn't know how to handle it.
The way to fix it is to add to the denominator something like .if(eq, 0, 1).
The text was updated successfully, but these errors were encountered:
Timelion visualizations don't show any data for a timeframe when there's a division by zero. In those cases, javascript returns a NaN but Timelion doesn't know how to handle it.
The way to fix it is to add to the denominator something like
.if(eq, 0, 1)
.The text was updated successfully, but these errors were encountered: