• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Display Flowchart in JSP

 
Ranch Hand
Posts: 106
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i want to display flowchart in JSP page (in j2ee web application)
is there is any tool available for this

also please tell me weather i should go for applet (is there any tool available to display it in applet )

Thanks in advance

Prafulla
 
Sheriff
Posts: 13411
Firefox Browser VI Editor Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JSP doesn't ship with anything for building charts or reports but there are plenty of libraries out there.

JasperReports is the first one that comes to mind.
 
Prafulla N. Patil
Ranch Hand
Posts: 106
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
can you explain in detail how it is possible with jasper charts
and is there is nay other option?

Thanks,

Prafulla
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think JasperReports is more for generating reports, not charts. One of the common charting libraries may have the right kind of chart; check out JFreeReport and JChart2D (both on SourceForge).
 
Prafulla N. Patil
Ranch Hand
Posts: 106
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
can you suggest any other tools or libraries than this
 
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Ulf Dittmer:
check out JFreeReport and JChart2D (both on SourceForge).



..only i wonder if you can deploy your application which incorporates either of the above in aproduction server.Arnt there any licensing/purchasing issues ??..also would like to know if any of our fellow ranchers came accross any issues related to performance of these charts and graphs..
 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Both JChart2D and JFreeChart are licensed under the LGPL, so I'm not sure what license/purchase issues you have in mind.

If performance is a problem depends on the concurrency that you encounter in your web app. Image generation does take a bit of CPU time, so if 100 users request charts simultaneously, there will probably be a delay.
[ October 16, 2007: Message edited by: Ulf Dittmer ]
 
If you're gonna buy things, buy this thing and I get a fat kickback:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic