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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.