Search found 8 matches

by rfuller
Fri Sep 05, 2003 2:54 pm
Forum: JFreeChart
Topic: TaskSeriesCollection rendering issue
Replies: 2
Views: 5013

I'll register this in the bugs database and put my version of the code there. You can diff against your version and decide whether or not a bug exists.
by rfuller
Fri Sep 05, 2003 2:22 pm
Forum: JFreeChart
Topic: PLEASE HELP ---- Task.addSubtask is not working
Replies: 8
Views: 14962

Try giving each subtask a different description

I seem to remember encountering this before, and applying different names to the task and each of the subtasks got around the issue.
by rfuller
Fri Sep 05, 2003 2:14 pm
Forum: JFreeChart
Topic: TaskSeriesCollection rendering issue
Replies: 2
Views: 5013

TaskSeriesCollection rendering issue

I have a TaskSeriesCollection containing four TaskSeries. Each of the TaskSeries has a set of tasks (some of which contain subtasks). Each TaskSeries may have some tasks which have corresponding tasks in one of the other series and/or it may have some tasks which are not in any of the other series. ...
by rfuller
Thu Sep 04, 2003 10:25 am
Forum: JFreeChart
Topic: compile jfreechart with debug="true"
Replies: 0
Views: 2609

compile jfreechart with debug="true"

Hi David,

Could you modify your build.xml to set debug="true" in the javac task? This would let us have a stack trace with source code line numbers if when an anomoly occurs.
by rfuller
Thu Aug 21, 2003 3:27 pm
Forum: JFreeChart
Topic: I got only one data - timeseries
Replies: 2
Views: 5608

Are you being thrown out of your loop with an Exception when trying to add a duplicate day to your series?

series1.add(day,value); // each day must be unique
by rfuller
Tue Aug 19, 2003 3:27 pm
Forum: JFreeChart
Topic: Scripting support
Replies: 4
Views: 6507

PHP / Java Integration

This isn't exactly the answer to the question you were asking, but... it appears that it is possible to integrate java support into your PHP environment, suggesting that in theory you could use jfreechart from PHP. http://si.php.net:8888/manual/en/ref.java.php Another approach would be to (have some...
by rfuller
Tue Aug 19, 2003 3:03 pm
Forum: JFreeChart
Topic: Can't display the chart in jsp
Replies: 4
Views: 8978

//try
ChartUtilities.writeChartAsPNG(response.getOutputStream(), chart, 400, 300);

//rather than
//ChartUtilities.writeChartAsPNG(out, chart, 400, 300);
by rfuller
Tue Aug 19, 2003 2:45 pm
Forum: JFreeChart
Topic: TimeSeries.setHistoryCount() proposal
Replies: 0
Views: 2830

TimeSeries.setHistoryCount() proposal

Hi David, First of all thanks to you and contributors for all the work put into jfreechart. The amount of interest surrounding this project is in itself a commendation to ye. As an ocassional user, I must say that it is a joy to be able to so easily create visual effects from data. Thank you!! I was...