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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi
I've looked through the documentation but can't seem to find a way of turning off the Visual Headers for all visualisations via a theme?
Is it possible via some undocumented piece of json?
Many thanks
Solved! Go to Solution.
Hi,
You can either shut it off individually like below
"pieChart": {
"*": {
"visualHeader": [
{
"show": false
}
]
}
},
Or for all visuals like below
"visualStyles": {
"*": {
"*": {
"visualHeader": [
{
"show": false
}
]
}
}
} }
Hi @CDavies
1. it is possible to turn off the visual header in reading mode:
go to "File -> Options and Settings -> Options -> Report Settings" and check the box "Hide the visual header in reading view"
2. If you don’t want or can't change this setting in the report, you can do it using the API.
var embedConfig = {
…
settings: {
filterPaneEnabled: false,
navContentPaneEnabled: false,
…
visualSettings: {
visualHeaders: [
{
settings: {
visible: false
}
/* No selector - Hide visual header for all the visuals in the report */
}
]
}
}
};
…
var report = powerbi.embed(embedContainer, embedConfig);
Hi,
You can either shut it off individually like below
"pieChart": {
"*": {
"visualHeader": [
{
"show": false
}
]
}
},
Or for all visuals like below
"visualStyles": {
"*": {
"*": {
"visualHeader": [
{
"show": false
}
]
}
}
} }
Perfect, thanks GordonLilj
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.