Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Syndicate_Admin
Administrator
Administrator

Remove Border from Filter (Visual)

Good!
Does anyone know if you can bring out the visual edge that is generated in the application's filters?
Not the outer edge of the object but the one that is generated for the values

darioramadan00_0-1719872395685.png

1 ACCEPTED SOLUTION
VN999
Resolver I
Resolver I

Power BI does not have a built-in option to directly remove this border through the slicer settings.

Apply the theme to your report through the "View" tab > "Themes" > "Switch Theme" > "Import Theme".

Here’s an example of how you can adjust slicer properties in a theme file:

{
"name": "Custom Theme",
"dataColors": [],
"visualStyles": {
"*": {
"*": {
"*": {
"slicer": {
"borderColor": "#ffffff", // Change border color to match background for invisibility
"borderStyle": "Solid"
}
}
}
}
}
}

View solution in original post

2 REPLIES 2
VN999
Resolver I
Resolver I

Power BI does not have a built-in option to directly remove this border through the slicer settings.

Apply the theme to your report through the "View" tab > "Themes" > "Switch Theme" > "Import Theme".

Here’s an example of how you can adjust slicer properties in a theme file:

{
"name": "Custom Theme",
"dataColors": [],
"visualStyles": {
"*": {
"*": {
"*": {
"slicer": {
"borderColor": "#ffffff", // Change border color to match background for invisibility
"borderStyle": "Solid"
}
}
}
}
}
}

The json schema has been changed over time (did not check when exactly) but the theme in the accepted answer does not work and gives the following error when importing in Power BI (since Jan 25 release or even earlier):

 

Validation error(s) at /visualStyles/*/*/*: must be array (type; matching schema #/properties/visualStyles/additionalProperties/properties/*/patternProperties/%5E.%2B%24/type)

 

(%5E.%2B%24 = ^.*$)

 

I have not found a solution to change the border color of the dropdown box of the visual slicer and have found not a setting in the json schema either, but I might have overlooked it.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors