Graph Line over empty Cells

Is there a way to make the Line Graph keeping drawing if data is not available for a given cell. Say a month that had no issues

Hi Dean,

The Timeline graph keeps drawing the line from one point to other while Line graph disconnects in case there are no values in members next to each other.

If you wish the line to drop to zero in case there is no value, you can create a new calculated member that displays zero in such cases. For example

CASE WHEN NOT isEmpty([Measures].[Issues created])
THEN Val([Measures].[Issues created])
ELSE 0
END

Please let me know if you have further questions regarding this!
Lauma / support@eazybi.com