How to generate URL...??

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Tsung-Cheng

How to generate URL...??

Post by Tsung-Cheng » Thu Feb 17, 2005 10:40 am

how to generate url that can link to a new window?? :?: :?:

Guest

Post by Guest » Fri Feb 18, 2005 5:24 am

renderer.setItemURLGenerator(new StandardCategoryURLGenerator("somepage.jsp","series","categories"));

its_vippy
Posts: 12
Joined: Thu Nov 18, 2004 9:55 am
Contact:

Post by its_vippy » Thu Sep 08, 2005 8:02 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

Locked