Link in a pie chart

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
tduraipkt
Posts: 6
Joined: Mon Jun 26, 2006 6:17 am

Link in a pie chart

Post by tduraipkt » Sat Aug 19, 2006 1:08 pm

Hi,
How can i give link to a PieChart. Actually i used the below code to create link to pie charts

CategoryItemLinkGenerator itemLink = new CategoryItemLinkGenerator()
{
public String generateLink(Object data,int series,Object category)
{
String url = "ex.htm";
return url;
}
};

<cewolf:map linkgeneratorid="itemLink" />

But the link will not get created...............

Hi friends send me the bugs or alternatives

with regards,
Durai

Locked