user461384
user461384

Reputation: 1

TreeMap and click event

How to generate onclick event in TreeMap

Upvotes: 0

Views: 352

Answers (1)

Arun
Arun

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

Related Questions