Reputation: 11
I am looking for a way to draw 3 horizontal lines, that each of them will be drawn with different values over specific x-axis values. For example:
Line 1: value= 0.5 for 0 <= x <= 20
Line 2: value= 1.5 for 20 < x <= 30
Line 3: value= 2.5 for 30 < x <= 35
Thanks
Upvotes: 1
Views: 777
Reputation: 11
Add a line with Lines & Curves/Curve Draw
the formula would look like
if(x>0 AND x<20 , 0.5 ,null)
Upvotes: 1