Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to generate a Pie chart or a graph using JSP

Status
Not open for further replies.

harishonnet

Programmer
Mar 21, 2003
1
US
I want to input some data and using that data i want to generate a pie chart or a graph. Is it posible in JSP, if yes how to go about it??if no , then is there any other way we can represent it in a web application??am looking fora easiest possible way. Please do help me in this regard.

Thanx
Sind
 
>> am looking fora easiest possible way.

It sounds like you already looked into drawing your own java.awt.Image and then using the PixelGrabber to get the bytes and stream them to the browser. Of course that's after you actually calculate all the math and deal with the java.awt.Graphics class for performing the drawing of the chart.

Unless you obtain a third party java class that does it for you, that's what you have to do.

-pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top