How to Change Slicer Font Size in Power BI

Cody Schneider7 min read

Getting your Power BI slicer font size just right can feel like a surprisingly tricky task. You've built a beautiful dashboard, but the text in your filters is too tiny to read, making it difficult for your team to actually use the report. This article provides a clear, step-by-step guide to changing the font size for every part of your slicer, from the header to the items in the list, so you can create reports that are both functional and easy on the eyes.

GraphedGraphed

Still Building Reports Manually?

Watch how growth teams are getting answers in seconds — not days.

Watch Graphed demo video

Why Slicer Font Size Matters

Before jumping into a "how-to", it’s worth noting why this seemingly small detail can have a big impact on your reports. Adjusting font sizes isn’t just about making things look pretty, it's about improving the overall usability and effectiveness of your dashboards.

  • Readability and Accessibility: This is the most obvious benefit. Clear, legible fonts ensure that everyone, including team members with visual impairments or those viewing the report on a large presentation screen, can easily read and interact with the filters. No one should have to squint to slice their data.
  • Visual Hierarchy: Deliberate font styling guides your user’s attention. By making slicer headers slightly larger or bolder than the items, you create an intuitive structure that tells them exactly how to interact with the report. It subtly signals what's a title and what's a clickable option.
  • Better User Experience: A clean, well-formatted dashboard feels more professional and is simply more pleasant to use. When users can effortlessly navigate and filter data, they're more likely to engage with the report and trust the insights it provides.

How to Change Slicer Font Size: The Main Method

The primary way to control visual elements in Power BI is through the Format pane. This contextual menu allows you to fine-tune nearly every aspect of your selected visual, including the slicer. Here's the step-by-step breakdown.

Step 1: Select Your Slicer

First, click on the slicer visual on your Power BI canvas. This action is essential, as it tells Power BI which element you want to modify. A bounding box will appear around the slicer, and the Visualizations pane on the right-hand side of your screen will update to reflect its properties.

GraphedGraphed

Still Building Reports Manually?

Watch how growth teams are getting answers in seconds — not days.

Watch Graphed demo video

Step 2: Open the Format Pane

In the Visualizations pane, look for the paintbrush icon. Its official name is "Format your visual." Clicking this will open up the formatting menu, which contains all the customization options for the slicer you selected.

Step 3: Modify the Specific Slicer Elements

A slicer isn’t a single object with one font setting. It's composed of several parts: the header, the items (or values), and sometimes a search box. You'll need to adjust each one individually.

Changing the Slicer Header Font

The slicer header is the title of the slicer, which tells users what they are filtering (e.g., "Region," "Date," or "Product Category").

  1. With your slicer selected and the Format pane open, find and expand the Slicer header section.
  2. Under the Text options, you'll see familiar controls for Font, Bold, Italic, Underline, Font color, and of course, Size.
  3. Click the dropdown or type in your desired font size. The change will immediately apply to your slicer's title.

Pro Tip: A good design practice is to make the header font two to four points larger than the item font to establish clear visual hierarchy.

Changing the Slicer Items (Values) Font

The "items" or "values" are the actual filter options your users can click on within the slicer (e.g., "North," "South," "East," "West" in a Region slicer). This is the font size people most commonly want to change.

  1. In the same Format pane, locate and expand the Values section. Note: In some older versions of Power BI, this might be labeled Items.
  2. Here, you'll find an identical set of controls for font family, size, color, and styling.
  3. Adjust the Size to make the list of options more readable. You can also change the font color and background color for selected vs. unselected items to improve contrast and visibility.

Handling Different Slicer Types

Power BI offers several types of slicers (list, dropdown, between for dates/numbers), and the formatting options can vary slightly. Let's look at how to handle the most common types.

Dropdown Slicers

For a slicer set to "Dropdown" style, the process is largely the same. The Slicer header formatting controls the title as usual. The Values section controls the font of the items that appear after a user clicks the dropdown box. The resting state text in the box before it's clicked is controlled by the Slicer header > Slicer text setting.

GraphedGraphed

Still Building Reports Manually?

Watch how growth teams are getting answers in seconds — not days.

Watch Graphed demo video

Button or Tile Slicers

When you set a slicer's orientation to "Horizontal," it behaves like a set of buttons or tiles. The font for these buttons is still controlled by the Values menu. Increasing the font size here will make the text on your tile buttons larger and easier to click.

Slider Slicers ('Between' for Numbers or Dates)

Range sliders operate a bit differently. When using a "Between," "Before," or "After" slicer for dates or numeric values, there are no "items" in a list.

Instead, the font for the date or number inputs is controlled under a section called Slider in the Format pane. Expand it, and you'll find formatting options for the font and size of the input boxes.

A More Efficient Way: Managing Fonts with Themes

Changing the font on one slicer is easy enough. But what if you have ten slicers across five different report pages and you want them all to be consistent? Modifying each one individually is slow and error-prone. This is where Power BI Themes become incredibly powerful.

A theme is a JSON file that pre-defines formatting for your entire report. By setting the slicer font size in your theme, you can ensure every new slicer you create automatically has the correct styling.

GraphedGraphed

Still Building Reports Manually?

Watch how growth teams are getting answers in seconds — not days.

Watch Graphed demo video

How to Customize a Theme

While you can select built-in themes, for full control you'll want to customize your own.

  1. Export Your Current Theme: Go to the View tab in the Power BI Desktop ribbon. Click the dropdown arrow on the Themes gallery and select Save current theme. Give it a name and save it as a JSON file.
  2. Edit the JSON File: Open the saved JSON file in a text editor like VS Code or even Notepad. You're going to add a specific snippet to control slicer styles. Find the visualStyles section and add the following code for the slicer visual.
{
  "name": "My Custom Theme",
  "visualStyles": {
    "slicer": {
      "*": {
        "items": [{
          "fontFamily": "Segoe UI",
          "fontSize": 12,
          "color": {"solid": {"color": "#4a4a4a"}}
        }],
        "header": [{
          "fontFamily": "Segoe UI Semibold",
          "fontSize": 14,
          "color": {"solid": {"color": "#252423"}}
        }]
      }
    }
  }
}

In this snippet, you can set the fontSize for both items (the values) and the header to whatever you need. Save the file after making your changes.

  1. Import Your New Theme: Back in Power BI, return to the View > Themes menu, but this time select Browse for themes. Select the JSON file you just edited. Your new default slicer font sizes will be applied across your entire report.

Final Thoughts

Mastering the font size of your Power BI slicers is a small detail that makes a huge difference in your dashboard's professionalism and usability. Whether you adjust them one by one through the Format pane or create a consistent look with a custom theme, you now have the tools to create reports that work for everyone.

While fine-tuning visuals in tools like Power BI is a valuable skill, it often requires digging through nested menus for every report. This is exactly why we built Graphed. We believe you shouldn't have to become an expert in formatting options just to get clear answers. You can simply connect your data sources—like Google Analytics, Shopify, or Salesforce—and describe the report you need in plain English. Graphed builds the live, interactive dashboards for you in seconds, so you can spend your time on insights, not settings.

Related Articles