I need to use the method "setPointClickEventHandler":
new TreemapPlotOptions()
.setPointClickEventHandler(new PointClickEventHandler() {
@Override
public boolean onClick(PointClickEvent evt) {
Point point = evt.getPoint();
//...
});
But unfortunately, there is no method "setPointClickEventHandler" for TreemapPlotOptions. Is there any alternative for using "PointClickEventHandler" in TreeMap chart?
I used the method "setPointClickEventHandler" of the class "SeriesPlotOptions" instead of the method in the class "TreemapPlotOptions" and it worked fine for me :)
tks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi everyone,
I need to use the method "setPointClickEventHandler":
But unfortunately, there is no method "setPointClickEventHandler" for TreemapPlotOptions. Is there any alternative for using "PointClickEventHandler" in TreeMap chart?
It is possible to create an PointEvent using Highcharts: http://jsfiddle.net/4sco3kze/
I used the method "setPointClickEventHandler" of the class "SeriesPlotOptions" instead of the method in the class "TreemapPlotOptions" and it worked fine for me :)
tks