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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Anonymous
Not applicable

How to disable setting with toggle switch

Hello everyone,

I created a custom visuals and I see that Robbon Chart can toggle the switch above to disable the color below. When the switch is on, I cannot select the color, but when it is off, I can select the color. I want to ask how to do that with code, can anyone show me a sample code or link to instructions on how to do this? Below is an illustrative example image 

LortT_0-1729219736181.png

LortT_2-1729220061264.png

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  ,Base on my description, it seems like you want to disable setting with toggle switch in custom visual. Then you'll need to modify the capabilities.json file and the visual's code.

Solved: Format Panel Toggle Switch to Reveal More Options - Microsoft Fabric Community

First ensure that your objects are all configured up in your capabilities.json and they have a corresponding setting object so that they appear in the pane.

If we start with a new visual, I've added these to the capabilities under the dataPoint object:

"toggle": {
"displayName": "Show my Property",
"type": {
"bool": true
}
},
"hideOnToggle": {
"displayName": "I Get Hidden if This Works",
"type": {
"text": true
}
}​

I'll add a couple of extra properties to the dataPointSettings class in settings.ts, e.g.:

// Test toggle
public toggle: boolean = true;
// Should hide if toggle off
public hideOnToggle: string = 'Hiya!';
}

Best Regards

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi  ,Base on my description, it seems like you want to disable setting with toggle switch in custom visual. Then you'll need to modify the capabilities.json file and the visual's code.

Solved: Format Panel Toggle Switch to Reveal More Options - Microsoft Fabric Community

First ensure that your objects are all configured up in your capabilities.json and they have a corresponding setting object so that they appear in the pane.

If we start with a new visual, I've added these to the capabilities under the dataPoint object:

"toggle": {
"displayName": "Show my Property",
"type": {
"bool": true
}
},
"hideOnToggle": {
"displayName": "I Get Hidden if This Works",
"type": {
"text": true
}
}​

I'll add a couple of extra properties to the dataPointSettings class in settings.ts, e.g.:

// Test toggle
public toggle: boolean = true;
// Should hide if toggle off
public hideOnToggle: string = 'Hiya!';
}

Best Regards

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.