JFreeChart 0.9.5 now available...

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
David Gilbert

JFreeChart 0.9.5 now available...

Post by David Gilbert » Thu Feb 06, 2003 4:40 pm

I've uploaded a new version of JFreeChart to the project page on SourceForge:

http://sourceforge.net/projects/jfreechart

0.9.5 includes the much requested dual-axis support, plus many other new features and bug fixes. Be warned, the API has changed significantly in this release...

Regards,

Dave Gilbert

David Gilbert

Re: JFreeChart 0.9.5 now available...

Post by David Gilbert » Thu Feb 06, 2003 6:13 pm

Javadocs are now available on-line:

http://www.object-refinery.com/jfreecha ... index.html

My plan for 0.9.6 is just to fix bugs and polish the existing code and documentation...feedback is welcome.

Regards,

Dave Gilbert

Yuhe

class MonthContants missing

Post by Yuhe » Thu Feb 06, 2003 6:14 pm

Hi,

I am very new to the jfreechart. Just tried a sample code, but the running error
complained the class MonthConstants no found. Search the jar file and source
came with the download. The class was missing. Any idea?

- Yuhe

Dmitry Kashin

Re: JFreeChart 0.9.5 now available...

Post by Dmitry Kashin » Fri Feb 07, 2003 11:34 am

jcommon-0.7.2.jar

Charles Martin

Re: JFreeChart 0.9.5 now available...

Post by Charles Martin » Sat Feb 08, 2003 8:12 am

Hi

I recently downloaded the 0.9.5.

I think I have a half-way decent idea about the basic ChartPanel, and I am hoping someone can explain to me the basic purpose of the the ChartEntity and ChartEntityCollection

Thanks
Charles Martin

David Gilbert

Re: JFreeChart 0.9.5 now available...

Post by David Gilbert » Tue Feb 11, 2003 10:51 am

Hi Charles,

The ChartEntity and ChartEntityCollection classes are used to collect information about the dimensions of various "bits" of a chart as they are drawn on some output target. This information is only collected if it is needed (for example, to work out where to display tooltips), via the ChartRenderingInfo object that can be passed in to the draw(...) method in the JFreeChart class.

Regards,

Dave Gilbert

Locked