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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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! | |
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 51 | |
| 46 | |
| 23 | |
| 19 |
| User | Count |
|---|---|
| 139 | |
| 112 | |
| 51 | |
| 33 | |
| 29 |