Forum Discussion

Syndicate_Admin's avatar
Syndicate_Admin
Administrator
2 years ago
Solved

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
  • VN999's avatar
    2 years ago

    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"
    }
    }
    }
    }
    }
    }