Hi there,
I am new to JFreeChart, and I would like to know if there is an example showing how to generate a 3D barchart in a web application with each bar of the chart haing a hyperlink to another jsp page that would display some aother information.
Any help would be appreciated.
Thanks in adcance.
ps: I ahve downloaded the developers guide, but could not find what I am looking for.
3D bar chart web application example!
Barchart hyperlink!
Thanks Angel,
I had to look at the JFreeChart servlet/JSP examples to try to understand how this should work, and I managed to get the hyperlink to work.
But there is always a "BUT", is there a way to open the linked page in a new internet browser window?
Any suggestion.
Thanks again.
I had to look at the JFreeChart servlet/JSP examples to try to understand how this should work, and I managed to get the hyperlink to work.
But there is always a "BUT", is there a way to open the linked page in a new internet browser window?
Any suggestion.
Thanks again.
You have to generate an <area> like that:
No href but an onclick-event handling. There you could put every Javascript code you want.
Code: Select all
<area shape="rect" coords="1,1,249,49" onclick="YourFunction()" alt="Tooltip">