Forum Discussion
Anonymous
10 years agoNot applicable
Custom Visual with drill support
How can I implement a custom Power BI visualization that supports the new drill down functionality? Specific interfaces/properties/attributes that needs to be supported?
- 10 years ago
I have not tried this in the Playground yet, but numerous charts have drilldown listed in their Capabilities. Try using one of the [x]capabilities.ts files for a template.
For example:
drilldown: {
roles: ['Category']
},
deldersveld
10 years agoResident Rockstar
I have not tried this in the Playground yet, but numerous charts have drilldown listed in their Capabilities. Try using one of the [x]capabilities.ts files for a template.
For example:
drilldown: {
roles: ['Category']
},
Anonymous
10 years agoNot applicable
You're right, it's as simple as that. I've tried it in the playground and it works. Thanks!