JFreeChart 0.9.15 released
-
- JFreeChart Project Leader
- Posts: 11734
- Joined: Fri Mar 14, 2003 10:29 am
- antibot: No, of course not.
- Contact:
JFreeChart 0.9.15 released
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
Read my blog
Support JFree via the Github sponsorship program
JFreeChart Project Leader


Missing Drawable interface in the source code
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
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
-
- JFreeChart Project Leader
- Posts: 11734
- Joined: Fri Mar 14, 2003 10:29 am
- antibot: No, of course not.
- Contact:
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
Read my blog
Support JFree via the Github sponsorship program
JFreeChart Project Leader


You are the number one!!!
I have used some functions of jfreechart, it's real so wonderful tools.... Thanks...
Bug in class XYDatasetTableModel
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
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
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
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