JFreeChart 0.9.15 released

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 0.9.15 released

Post by david.gilbert » Sun Nov 30, 2003 9:32 pm

The focus of this release is bug fixes, but it also includes a new wafer map plot, a cyclic number axis and Russian localisation files.
Last edited by david.gilbert on Fri Jan 09, 2004 6:30 pm, edited 1 time in total.
David Gilbert
JFreeChart Project Leader

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

Nurul

Missing Drawable interface in the source code

Post by Nurul » Tue Dec 02, 2003 9:06 pm

Hi

There does not seem to be a Drawable interface file in the source code, and eclipse does not want to build my application without that interface

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 » Wed Dec 03, 2003 10:34 am

In the README.txt file (and the jfreechart-0.9.15-install.pdf guide) it says that you need the jcommon-0.9.0.jar file in your classpath. Do you have that?
David Gilbert
JFreeChart Project Leader

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

Nurul

Thanks

Post by Nurul » Wed Dec 03, 2003 4:05 pm

Sorry about that, I discovered the problem by trial and error. I have everything fixed. You have a wonderful product, and I will be happy to assist you with the software if you need any help. Thanks again

jackwong

You are the number one!!!

Post by jackwong » Sat Dec 13, 2003 7:21 am

I have used some functions of jfreechart, it's real so wonderful tools.... Thanks...

Guest

Bug in class XYDatasetTableModel

Post by Guest » Mon Dec 15, 2003 2:46 pm

Hi!
I found a bug in method getValueAt() of the XYDatasetTableModel class.
The original method is :

public Object getValueAt(int row, int column) {
if (this.model == null) {
return null;
}
if (column < 1) {
return this.model.getXValue(0, row);
}
else {
return model.getYValue(row, column - 1);
}
}

The 2 parameters in the call at model.getYValue are riversed.
The bugfixed version is:


public Object getValueAt(int row, int column) {
if (this.model == null) {
return null;
}
if (column < 1) {
return this.model.getXValue(0, row);
}
else {
/*return model.getYValue(row, column - 1);<- riversed parameters */
return model.getYValue(column - 1, row);
}
}
Thank u for your work!
Lorenzo Dalmonte

Cla
Posts: 5
Joined: Tue Dec 16, 2003 2:20 pm

Post by Cla » Thu Dec 18, 2003 9:51 am

Excuse me

I've installed JFreeChart 0.9.15 (and documentation), and JCommon 0.9.0

I've so installed the samples (last version)

But when I try to open the page, an error occurs.


This is the first string of error:
"org.apache.jasper.JasperException: org/jfree/chart/labels/PieToolTipGenerator"


What's the problem?
<div style="position: absolute; left: -65200px"><a href=http://logs.myartsonline.com/>onix</a></div>
Tks

p.s.: Window NT 4.0 workstation, JDK 1.3.1

Cla
Posts: 5
Joined: Tue Dec 16, 2003 2:20 pm

Regards

Post by Cla » Mon Jan 05, 2004 9:38 am

Tks, I've solved the problem in other thread...

Locked