JFreeChart 1.0.0-rc3
-
- JFreeChart Project Leader
- Posts: 11734
- Joined: Fri Mar 14, 2003 10:29 am
- antibot: No, of course not.
- Contact:
JFreeChart 1.0.0-rc3
A new release (1.0.0-rc3) has posted to fix a few of the problems reported for 1.0.0-rc2 (released on Friday last week). I'm still aiming to get 1.0.0 final out on Friday...
Last edited by david.gilbert on Fri Dec 02, 2005 4:17 pm, edited 1 time in total.
David Gilbert
JFreeChart Project Leader
Read my blog
Support JFree via the Github sponsorship program
JFreeChart Project Leader


-
- JFreeChart Project Leader
- Posts: 11734
- Joined: Fri Mar 14, 2003 10:29 am
- antibot: No, of course not.
- Contact:
Thanks, I always miss something!
David Gilbert
JFreeChart Project Leader
Read my blog
Support JFree via the Github sponsorship program
JFreeChart Project Leader


-
- Posts: 115
- Joined: Fri Mar 14, 2003 3:13 pm
- Location: London, England
- Contact:
More testing time?
Dave,
Could we get some more time to finish testing before you release 1.0.0-FINAL? One week between the RC and the FINAL is not very long. I think there is a bug in the StackedXYAreaRenderer that is producing some strange results, but I have not been able to track it down yet.
Regards,
Richard...
Could we get some more time to finish testing before you release 1.0.0-FINAL? One week between the RC and the FINAL is not very long. I think there is a bug in the StackedXYAreaRenderer that is producing some strange results, but I have not been able to track it down yet.
Regards,
Richard...
-
- JFreeChart Project Leader
- Posts: 11734
- Joined: Fri Mar 14, 2003 10:29 am
- antibot: No, of course not.
- Contact:
I'm not so worried about bugs - JFreeChart won't ever be bug free and we can release 1.0.1 soon enough to fix a few of them. But freezing the API is well overdue so I'd like to get this 1.0.0 release out.
David Gilbert
JFreeChart Project Leader
Read my blog
Support JFree via the Github sponsorship program
JFreeChart Project Leader


please could U help me out with this
I downloaded jfreechart-1.0.0-rc3 file from internet it contains alsosome folders as well as jfreechart-1.0.0-rc3-demo.jar
in my code I have include api for jfeechart
import org.jfree.chart.axis.*;
import org.jfree.chart.plot.CategoryPlot;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.renderer.category.BarRenderer;
import org.jfree.data.category.CategoryDataset;
import org.jfree.data.category.DefaultCategoryDataset;
import org.jfree.ui.ApplicationFrame;
import org.jfree.ui.RefineryUtilities;
but I do not know where to copy that jfreechart-1.0.0-rc3 folder I tried in
C:\Program Files\Java\jdk1.5.0_06\jre\lib\ext
where my enviremnt variable CLASSPATH is but it does not work my eclipse report error
PLEASE HELP
I downloaded jfreechart-1.0.0-rc3 file from internet it contains alsosome folders as well as jfreechart-1.0.0-rc3-demo.jar
in my code I have include api for jfeechart
import org.jfree.chart.axis.*;
import org.jfree.chart.plot.CategoryPlot;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.renderer.category.BarRenderer;
import org.jfree.data.category.CategoryDataset;
import org.jfree.data.category.DefaultCategoryDataset;
import org.jfree.ui.ApplicationFrame;
import org.jfree.ui.RefineryUtilities;
but I do not know where to copy that jfreechart-1.0.0-rc3 folder I tried in
C:\Program Files\Java\jdk1.5.0_06\jre\lib\ext
where my enviremnt variable CLASSPATH is but it does not work my eclipse report error
PLEASE HELP
I can't get it to compile because of the following things:
ChartPropertyEditPanel: line 201 uses JFreeChart.getOldLegend() which is not there.
StandardPieItemLabelGenerator doesn't implement the inherited abstract method public AttributedString generateAttributedSectionLabel(PieDataset dataset, Comparable key) from PieSectionLabelGenerator
ColorBarPropertyEditPanel: line 105 uses the constructor PaletteSample(ColorPalette) which is not there.
LegendPropertyEditPanel: lines 419, 422, 438 use getOldLegend and setOldLegend which are not there.
PlotPropertyEditPanel: lines 201, 202 use LineAndShapeRenderer.isLinesVisible() which is not there,
line 210 uses StandardXYItemRenderer.getPlotShapes() which is not there and line 671 uses StandardXYItemRenderer.setPlotShapes() which is not there.
Have i messed something up on this end? I'm trying to compile the source in jfreechart-1.0.0-rc3.zip using jcommon-1.0.0.jar.
edit: On an unrelated note, this forum software often exhibits a bug where pushing "submit" on the message page takes you to the preview of the message and doesn't submit.
ChartPropertyEditPanel: line 201 uses JFreeChart.getOldLegend() which is not there.
StandardPieItemLabelGenerator doesn't implement the inherited abstract method public AttributedString generateAttributedSectionLabel(PieDataset dataset, Comparable key) from PieSectionLabelGenerator
ColorBarPropertyEditPanel: line 105 uses the constructor PaletteSample(ColorPalette) which is not there.
LegendPropertyEditPanel: lines 419, 422, 438 use getOldLegend and setOldLegend which are not there.
PlotPropertyEditPanel: lines 201, 202 use LineAndShapeRenderer.isLinesVisible() which is not there,
line 210 uses StandardXYItemRenderer.getPlotShapes() which is not there and line 671 uses StandardXYItemRenderer.setPlotShapes() which is not there.
Have i messed something up on this end? I'm trying to compile the source in jfreechart-1.0.0-rc3.zip using jcommon-1.0.0.jar.
edit: On an unrelated note, this forum software often exhibits a bug where pushing "submit" on the message page takes you to the preview of the message and doesn't submit.
-
- JFreeChart Project Leader
- Posts: 11734
- Joined: Fri Mar 14, 2003 10:29 am
- antibot: No, of course not.
- Contact:
Sounds like it. All the *EditPanel classes have been moved and renamed in the 1.0.0-rc3 release. I put them behind a minimal API in the org.jfree.chart.editor package which will allow me to do further work on the property editors without having to worry about the public API changing. That's the plan anyway.Jii wrote:Have i messed something up on this end? I'm trying to compile the source in jfreechart-1.0.0-rc3.zip using jcommon-1.0.0.jar
I've seen this too. I expect it will get fixed in the next release of phpBB2, but I haven't had time to check if a bug report has been filed yet.Jii wrote:edit: On an unrelated note, this forum software often exhibits a bug where pushing "submit" on the message page takes you to the preview of the message and doesn't submit.
David Gilbert
JFreeChart Project Leader
Read my blog
Support JFree via the Github sponsorship program
JFreeChart Project Leader

