JFreeChart 1.0.0-rc2

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
david.gilbert
JFreeChart Project Leader
Posts: 11734
Joined: Fri Mar 14, 2003 10:29 am
antibot: No, of course not.
Contact:

JFreeChart 1.0.0-rc2

Post by david.gilbert » Fri Nov 25, 2005 4:05 pm

We are pleased to announce a new release of the JFreeChart class library. This is a second "release candidate" for JFreeChart 1.0.0 final, if no significant problems are reported in the next few days then the 1.0.0 release will be made on 2 December 2005, approximately six years since the first work on JFreeChart began! Here is the link to the SourceForge project page for download links:

https://sourceforge.net/projects/jfreechart/

The significance of the upcoming 1.0.0 release is that the API will be "frozen", and future releases in the 1.0.x series will maintain backwards compatibility with the 1.0.0 release. The changing API has been the number 1 user complaint for many months now, so this should make some people happy.

Thanks to everyone that has contributed to JFreeChart and here's looking forward to next Friday's release, and many more years of JFreeChart development...
Last edited by david.gilbert on Thu Dec 01, 2005 12:58 pm, edited 1 time in total.
David Gilbert
JFreeChart Project Leader

:idea: Read my blog
:idea: Support JFree via the Github sponsorship program

nclemeur
Posts: 7
Joined: Mon Feb 14, 2005 12:35 pm

Resource Bundle Missing in the jar

Post by nclemeur » Sat Nov 26, 2005 3:26 am

Hello David,

I have downloaded the latest version and it looks great. I did not had to modify anything to run my program with it.

However, it looks like the resource files are not included by the ant build script...

Also, the chart editor does not seems to work anymore in the demo... Is that something expected?

Thanks again for such a good library!

Cheers

Nicolas

david.gilbert
JFreeChart Project Leader
Posts: 11734
Joined: Fri Mar 14, 2003 10:29 am
antibot: No, of course not.
Contact:

Post by david.gilbert » Sun Nov 27, 2005 8:37 am

Hi Nicolas,

Aaargh! Thanks for letting me know...I will fix the Ant script and make a new download available (1.0.0-rc3) tonight or tomorrow. Still aiming for 1.0.0 final on Friday...
David Gilbert
JFreeChart Project Leader

:idea: Read my blog
:idea: Support JFree via the Github sponsorship program

angel
Posts: 899
Joined: Thu Jan 15, 2004 12:07 am
Location: Germany - Palatinate

Post by angel » Mon Nov 28, 2005 9:50 am

The Developer Guide is still at work in progress but the API-Changes for Legend and PieSectionLabelGenerator aren't covered yet.

Guest

Post by Guest » Mon Nov 28, 2005 10:57 am

I got a

Code: Select all

java.lang.NoClassDefFoundError: org/jfree/chart/labels/StandardPieItemLabelGenerator
with rc2. I couldn't find a note to this (possibly changed/removed/replaced) class in the CHANGELOG.txt. :?

mhilpert
Posts: 497
Joined: Wed Apr 02, 2003 1:57 pm
Location: Germany

RC2: new setShapesVisible() not visible

Post by mhilpert » Mon Nov 28, 2005 11:06 am

The changelog says:


[API] In XYStepAreaRenderer, renamed get/setPlotShapes() -->
get/setShapesVisible() (DG);


When using rc2 I get a compile error at

Code: Select all

                    StandardXYItemRenderer sxyir = (StandardXYItemRenderer) xyir;
                    sxyir.setPlotShapes(visible);
so I replaced setPlotShapes() with setShapesVisible() but that doesn't work also:

The method setPlotShapes(boolean) is undefined for the type
StandardXYItemRenderer


I can't see a method "setShapesVisible()" in the sources of these classes either. :roll:
Java 11, JFreeChart 1.0.15, JFreeSVG 4.0

david.gilbert
JFreeChart Project Leader
Posts: 11734
Joined: Fri Mar 14, 2003 10:29 am
antibot: No, of course not.
Contact:

Post by david.gilbert » Mon Nov 28, 2005 12:05 pm

Anonymous wrote:I got a

Code: Select all

java.lang.NoClassDefFoundError: org/jfree/chart/labels/StandardPieItemLabelGenerator
with rc2. I couldn't find a note to this (possibly changed/removed/replaced) class in the CHANGELOG.txt. :?
It's been renamed StandardPieToolTipGenerator. I'll add an entry to the CHANGELOG.txt file for future reference.
David Gilbert
JFreeChart Project Leader

:idea: Read my blog
:idea: Support JFree via the Github sponsorship program

scaspersen

Post by scaspersen » Mon Nov 28, 2005 2:13 pm

removeAgedItems in org.jfree.data.time.TimeSeries use an int to age a long datatype, that does not seem reasonable. I am trying to show 1 year of history and my data is reduced to approx. 1 month.

david.gilbert
JFreeChart Project Leader
Posts: 11734
Joined: Fri Mar 14, 2003 10:29 am
antibot: No, of course not.
Contact:

Post by david.gilbert » Mon Nov 28, 2005 3:07 pm

scaspersen wrote:removeAgedItems in org.jfree.data.time.TimeSeries use an int to age a long datatype, that does not seem reasonable. I am trying to show 1 year of history and my data is reduced to approx. 1 month.
Yes, it should be a long, I'll fix that now. Note that the age is specified in terms of the number of time periods (of whatever class the TimeSeries happens to be using), not strictly milliseconds (although, of course, it *can* be milliseconds).
David Gilbert
JFreeChart Project Leader

:idea: Read my blog
:idea: Support JFree via the Github sponsorship program

david.gilbert
JFreeChart Project Leader
Posts: 11734
Joined: Fri Mar 14, 2003 10:29 am
antibot: No, of course not.
Contact:

Post by david.gilbert » Tue Nov 29, 2005 12:34 pm

angel wrote:The Developer Guide is still at work in progress but the API-Changes for Legend and PieSectionLabelGenerator aren't covered yet.
Thanks for the feedback, I'm working on this right now.
David Gilbert
JFreeChart Project Leader

:idea: Read my blog
:idea: Support JFree via the Github sponsorship program

Locked