Forum Discussion
Anonymous
11 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?
- 11 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
Resident Rockstar
11 years agoI 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
11 years agoNot applicable
You're right, it's as simple as that. I've tried it in the playground and it works. Thanks!