How to link one Barchart to another Chart

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
tmitra
Posts: 3
Joined: Wed Sep 08, 2010 5:37 am
antibot: No, of course not.

How to link one Barchart to another Chart

Post by tmitra » Wed Sep 08, 2010 7:30 am

Hello,
I need to link from one column i.e. a bar in a bar chat to another, completely different bar chart graph. The idea here is to drill down from one level view i.e. say a weekly view of performance measures, to a daily view of performance measures.
I want to click on one bar which will invoke another JSP page that shows the daily view bar charts.
I am using Servlets/JSP technology.

I know this is possible in Pie Charts using the code snippet:
// set drilldown capability...
plot.setURLGenerator(new StandardPieURLGenerator("Bar3DDemo.jsp","section"));
plot.setLabelGenerator(null);

But I am not being able to do this for bar charts.

Some code snippet will be of tremendous help!

Can you please help? I need to do a demo to the customer tomorrow. :-(

Thanks in advance,
-T

Locked