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! Request now
I have a slicer that I have removed the background from:
However, when I open the dropdown list I get the following:
I would like the background of this dropdown to be transparent too, but I cannot see a way to do this - is there a way?
Thanks for your help!
Solved! Go to Solution.
Hi @oliverblane ,
The color in the drop-down box of the slicer is related to the background color of the items. You can choose the desired color in the position below.
If you want the dropdown box background to be transparent, you need to import a custom theme and set its background to be transparent: "background": { "solid": { "color": "#FFFFFF00"}}
Here are the steps for my test.
{
"name": "SlicerTemplate",
"visualStyles": {
"slicer": {
"*": {
"items": [{
"fontColor": { "solid": { "color": "#FFFFFF"}},
"background": { "solid": { "color": "#FFFFFF00"}},
"outline": "None",
"textSize": 11,
"fontFamily": "Segoe UI"
}]
}
}
}
}
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@oliverblane , We usually use a theme in such a case to make sure the background is in line with the background of the page.
Hi @amitchandak, sorry I do not follow. How do I add a theme to the slicer?
So it is not possible to make the dropdown background transparent?
Hi @oliverblane ,
The color in the drop-down box of the slicer is related to the background color of the items. You can choose the desired color in the position below.
If you want the dropdown box background to be transparent, you need to import a custom theme and set its background to be transparent: "background": { "solid": { "color": "#FFFFFF00"}}
Here are the steps for my test.
{
"name": "SlicerTemplate",
"visualStyles": {
"slicer": {
"*": {
"items": [{
"fontColor": { "solid": { "color": "#FFFFFF"}},
"background": { "solid": { "color": "#FFFFFF00"}},
"outline": "None",
"textSize": 11,
"fontFamily": "Segoe UI"
}]
}
}
}
}
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!