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
Exciting changes

Power BI Community Changes

Check out the changes to the Power BI Community announced at Build.

May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Kudo Data Story carousel

Data Stories Gallery

Visit our Data Stories Gallery and give kudos to your favorite Data Stories.