Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello there,I have this dashboard and I want to investigate for an issue that relates to Line Chart according to the below photo:
The lines charts are seems seperated from each others, and I want to tie them together as you see the bottem left lines and the top right lines. The tie for each one of them color per color.
Thanks,
Solved! Go to Solution.
Hi @DevBI99 ,
Those disconnected lines are due to the value being blank/null for those X-Axis category values.
You will need to convert those blanks/nulls to 0 so that the lines get connected.
Here's a sample DAX for new calculated measure:
New_Value1 = IF(ISBLANK(SUM('Table'[Value1])), 0, SUM('Table'[Value1]))
Here's the result (Bottom Line chart is with new values😞
Hi @DevBI99 ,
Those disconnected lines are due to the value being blank/null for those X-Axis category values.
You will need to convert those blanks/nulls to 0 so that the lines get connected.
Here's a sample DAX for new calculated measure:
New_Value1 = IF(ISBLANK(SUM('Table'[Value1])), 0, SUM('Table'[Value1]))
Here's the result (Bottom Line chart is with new values😞
Hi @DevBI99 - can you please share the same with dummy data?
By structuring your data correctly and using the Line Chart visualization in Power BI, you can achieve continuous lines of the same color.
Proud to be a Super User! | |
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 36 | |
| 34 | |
| 31 | |
| 27 |
| User | Count |
|---|---|
| 136 | |
| 103 | |
| 67 | |
| 65 | |
| 56 |