cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
vidyutron
New Member

Implementing D3 event handling in Power BI.

As we know power bi cutom visuals fully supports D3 engine.

Recently tried to achieve drill down functionality solely using D3 event handling. 

Working javascript snippet for the visual:

image.png

function cards(data){
let tr = d3.select("tbody")
.selectAll("tr")
.data(data.children)
.enter()
.append("tr")
.html((d) => { return d.name + "</br>" +d.value })
.attr("font-family", "sans-serif")
.attr("font-size", "28px")
.attr("class","sampletd")
.on('click',this.clickDown);
}
//clickDown is drill down handling method.
clicking on each card activates the drill down fnctionality.
but the same code migrated to TS is not rendering in Power BI.
 
Any sample illustaration, suggestion or any specific feature of Power bi which can be used in this scenario will be appreciated.
1 REPLY 1
v-chuncz-msft
Community Support
Community Support

@vidyutron, Try to use try...catch statement for troubleshooting. It is very useful.
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Kudoed Authors