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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
I'm trying to apply a default colour to a multiple line chart and highlight the first categories in the data (fixed). This is what I need to get:
But I have only been able to apply colours individually to each line on Power BI
This will not work because (1) the number of lines is high and (2) the number of lines may change when the data source is updated.
Is there a way to do this?
Thanks!
--
Ana
Solved! Go to Solution.
@ana-pierola Have you investigated custom themes?
@ana-pierola Have you investigated custom themes?
Thanks! Indeed, themes worked.
I'll copy the lines I added to the json file, in case this is useful for somebody else
{
"name": "Theme name",
...
"visualStyles": {
...
"lineChart": {
"*": {
"dataPoint": [{
"defaultColor": { "solid": { "color": "#F0F0F0"}}
}]
}
},
...
},
...
}
A lot more options are given here:
https://github.com/deldersveld/PowerBI-ThemeTemplates/blob/master/Line.json
@ana-pierola Awesome. I should have also posted my blog article on theme generators for you:
Power BI Theme Generators - Microsoft Power BI Community