Search found 8 matches

by patrickherber
Mon Dec 01, 2003 8:26 am
Forum: JFreeChart
Topic: MeterChart - Legend not visible
Replies: 5
Views: 8748

Thanks a lot for your answer. If you have the Developer Guide, you can see (27.12.1) that the legend of a Meter Chart is something special. It looks like: Sample Meter Current Value: 85 Meter Graph Range 20 to 140 Critical Range 120 to 140 Warning Range 100 to 120 Normal Range 70 to 100 So I think, ...
by patrickherber
Sat Nov 29, 2003 6:30 pm
Forum: JFreeChart
Topic: calling from a jsp page
Replies: 5
Views: 7690

Did you receive an answer or find a solution?
Actually what you do looks ok. (I do quite the same (only using Struts actions) and I have no problems)
If you want you can send me your servlet and I have a look at the code.
Regards
Patrick (patrick.herber@ticino.com)
by patrickherber
Sat Nov 29, 2003 6:22 pm
Forum: JFreeChart
Topic: Outputstream and printwriter
Replies: 5
Views: 4434

Hi, I think that you need to have a servlet (or at least a request) which returns the HTML page and one which only return the image (this one is called from the image tag -> <img src="servlet/ChartServlet">). In this servlet you have than to set the output type as JPEG (I don't remember the mime typ...
by patrickherber
Sat Nov 29, 2003 6:17 pm
Forum: JFreeChart
Topic: How can I show the values on PIECharts?
Replies: 2
Views: 4195

Hi, try with PiePlot plot = ...; ... plot.setShowSeriesLabels(true); // Then you have sever choices: plot.setSectionLabelType(PiePlot.NAME_LABELS); // show the name as label //plot.setSectionLabelType(PiePlot.PERCENT_LABELS); // show the values as % plot.setSectionLabelType(PiePlot.VALUE_LABELS); //...
by patrickherber
Sat Nov 29, 2003 6:13 pm
Forum: JFreeChart
Topic: Newbie, Any help??
Replies: 1
Views: 2657

Hi, there is a Developer Guide ( http://www.object-refinery.com/jfreechart/support.html ), which is not free (I used it to get started and I'm quite happy with it). You can also study have a look at the examples in the Demo package. I also found some other links for you: http://www.javaworld.com/jav...
by patrickherber
Sat Nov 29, 2003 6:07 pm
Forum: JFreeChart
Topic: MeterChart - Legend not visible
Replies: 5
Views: 8748

... problem sussist also with JFreeChart 0.9.15

Sorry for bothering again. I've installed today JFreeChart 0.9.15, but I've notice that this problem (at least by me) sussist. Did/Can anybody test the MeterChart Demo and tell me if by him/her is the legend visible? (Perhaps it is really only a problem with my configuration). Thanks a lot and bye P...
by patrickherber
Fri Nov 28, 2003 9:22 am
Forum: JFreeChart
Topic: MeterChart - Legend not visible
Replies: 5
Views: 8748

MeterChart - Legend not visible

Hi!
I'm using JFreeChart 0.9.14 and I see that the legend of a MeterChart is not displayed (this also happened in the Demo example).

Is that a bug or something is wrong with me?
Thanks a lot for your help!
Regards,
Patrick
by patrickherber
Mon Jul 28, 2003 5:13 pm
Forum: JFreeChart
Topic: Version 0.9.10: MultiPie and Label Orientation
Replies: 0
Views: 2351

Version 0.9.10: MultiPie and Label Orientation

Hallo, I've noticed that with Version 0.9.10 is no more possible to create multiple pies (I've seen there is already a message about that). In my code I have: plot = new PiePlot(dataset, PiePlot.PER_ROW); but what I get is a blank chart (with Version 0.9.9 still worked). Second problem (this one did...