Forum Discussion
satishr
8 years agoHelper III
Custom visual - tables with tabs
I have a requirement to create a custom visual where I have to create a tabbed interface each containing tables something similar to the image. Please help me with any code examples. I'm trying to cr...
- 8 years ago
That depends on what library you use. The common way is to add an event handler for click event:
- Vanila JS: element.addEventListener("click", () => {// TODO: Do something });
- D3.js / jQuery: selection.on("click", () => {// TODO: Do something })
Ignat Vilesov,
Software Engineer
Microsoft Power BI Custom Visuals
Anonymous
5 years agoNot applicable
Another option is to use book marks to show/hide the visuals. Each visual can have filters applied to it.
Here are the steps:
https://www.aerieconsulting.com/blog/how-to-hide-and-show-visuals-in-power-bi
- Maho5 years agoFrequent Visitor
Perfect, thanks' this link was really useful for me. 🙏