set more params in URL::URGENT

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
its_vippy
Posts: 12
Joined: Thu Nov 18, 2004 9:55 am
Contact:

set more params in URL::URGENT

Post by its_vippy » Thu Sep 08, 2005 8:09 am

Hi,
If i want to send more parameter with request other
than "series " and "Item" in the url of Imagemap

e.g.
href="http:://localhost/servlet/ChartWindow?parent=LOAD&series=AVG_LOAD&category=CPU"

how to set that ????

currently what i am doing is

Code: Select all

//br->bar renderer instance
br.setItemURLGenerator(new StandardCategoryURLGenerator("../servlet/ChartWindow","series","category"));



Any help is appreciated

pmlb
Posts: 31
Joined: Thu Aug 25, 2005 5:18 pm
Location: France

Post by pmlb » Thu Sep 08, 2005 12:57 pm

Try this:

Code: Select all

StandardCategoryURLGenerator("../servlet/ChartWindow?parent=LOAD","series","category"));
Pierre-Marie

Locked