Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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! | |
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 84 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |