Search found 9 matches

by agh
Fri Apr 21, 2006 7:13 pm
Forum: JFreeChart
Topic: Linechart with Many series
Replies: 3
Views: 3776

Is there any way that I can show the data underneath of the graph
by agh
Fri Apr 21, 2006 6:37 pm
Forum: JFreeChart
Topic: Linechart with Many series
Replies: 3
Views: 3776

Thanks a lot... I got it..
by agh
Thu Apr 20, 2006 7:21 pm
Forum: JFreeChart
Topic: Linechart with Many series
Replies: 3
Views: 3776

Linechart with Many series

I am having the problem when I am generating Line chart for months Jul-Jun I have many series.. X- Axis - Months Y - Axis - Inpatients ,Variance and out patients data (Three lines) Here is my Code.. XYSeriesCollection dataset = new XYSeriesCollection(); XYSeries inpseries = new XYSeries(Inpatient); ...
by agh
Mon Apr 10, 2006 9:31 pm
Forum: JFreeChart
Topic: Linechart with Trendline
Replies: 2
Views: 3383

Linechart with Trendline

How to add trend line in line charts. Appreciate your help..
by agh
Tue Mar 14, 2006 7:33 pm
Forum: JFreeChart
Topic: Not able to Display the graph - 500 error Urgent
Replies: 5
Views: 5388

I found the Problem and working when I changed to this getTempOneTimeFilePrefix. tempFile = File.createTempFile(ServletUtilities.getTempOneTimeFilePrefix(),".png", new File(System.getProperty("java.io.tmpdir"))); DisplayChart is looking for the Jfreechart-onetime-15381.png. getTempOneTimeFilePrefix(...
by agh
Tue Mar 14, 2006 1:33 am
Forum: JFreeChart
Topic: Not able to Display the graph - 500 error Urgent
Replies: 5
Views: 5388

I tried . But did not work.
Any other suggestions???
by agh
Thu Mar 09, 2006 4:23 pm
Forum: JFreeChart
Topic: Not able to Display the graph - 500 error Urgent
Replies: 5
Views: 5388

Not able to Display the graph - 500 error Urgent

My application is in Struts. I have written Struts action class where I have data set and creating the graph and storing it in the file. This is the code.. response.setContentType("text/html"); // PrintWriter writer = response.getWriter(); ChartRenderingInfo info = new ChartRenderingInfo(new Standar...
by agh
Fri Mar 03, 2006 3:36 pm
Forum: JFreeChart
Topic: Jfree Charts with Struts Frame work
Replies: 2
Views: 3018

Jfree Charts with Struts Frame work

Thanks a lot.. I am waiting for your samples..
I really appreciate you..
Thanks
by agh
Thu Mar 02, 2006 10:36 pm
Forum: JFreeChart
Topic: Jfree Charts with Struts Frame work
Replies: 2
Views: 3018

Jfree Charts with Struts Frame work

Hi , I would like to use Jfree charts in my Struts application. I read some of the postings. I could not understand exactly How to use in Struts. What objects should go where? Suppose i have action class where I am pulling the data from the Database to generate the graph. Can I write the Graph code ...