Hi Bas,
I think you just need to add the image map for the x-axis.
For example, in the original sample code, the image map is:
String imageMap1 = c.getHTMLImageMap("", "",
"title='{xLabel}: {top|mmm dd, yyyy} to {bottom|mmm dd, yyyy}'");
You may modify it to:
String imageMap1 = c.getHTMLImageMap("", "",
"title='{xLabel}: {top|mmm dd, yyyy} to {bottom|mmm dd, yyyy}'")
+ c.xAxis().getHTMLImageMap("handler.jsp");
The added image map c.xAxis().getHTMLImageMap("handler.jsp") will make the axis labels clickable.
Hope this can help.
Regards
Peter Kwan |