Reputation: 1
How to generate onclick event in TreeMap
Upvotes: 0
Views: 352
Reputation: 375
I think your are asking for Jquery treemap plugin. If so, I have done this once. check the below code
$('.treemapCell').each(function () {
$(this).find('span').click(function () {
//Code
});
});
Cheers!!
Upvotes: 1