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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors