I would like to ask question about timelion.
(1) Below code displays no chart.
.static(1).divide(0)
It seems that zero is not the value return from divide
.static(1).divide(0).if(eq, 0, 0 ,1)
null is also not the value returned.
.static(1).divide(0).if(eq, null, 0 ,1)
(2) But this condition seem to work.
$static=.static(1).divide(0),
($static).if(gt, 0, 2, 0)
(2) is bit verbose so I want to show 0 in straight forward manner using simple condition like in (1).
What does timelion return with zero division ?



