Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I am trying to convert the following line chart to format anything above my .2% threshold as colored and anything below as grayed.
Is there a way to format the line colors like below or no?
Solved! Go to Solution.
 
					
				
		
Hi @seanprincivalle ,
Line charts can be customized with line colors, but only one line color is supported for the time being. You can create a value to implement two colors of the line.
Here are the steps you can follow:
1. Place the following fields in the line chart.
Format – Lines – Color – change line color.
2. Create measure.
Measure =
var _sum=SUMX('Table',[Value])
return
IF(
    _sum>=0.002,_sum,BLANK())3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
 
					
				
		
Hi @seanprincivalle ,
Line charts can be customized with line colors, but only one line color is supported for the time being. You can create a value to implement two colors of the line.
Here are the steps you can follow:
1. Place the following fields in the line chart.
Format – Lines – Color – change line color.
2. Create measure.
Measure =
var _sum=SUMX('Table',[Value])
return
IF(
    _sum>=0.002,_sum,BLANK())3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
 
					
				
				
			
		
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
 
            | User | Count | 
|---|---|
| 82 | |
| 49 | |
| 35 | |
| 31 | |
| 30 |