[Schmitzm-commits] r672 - branches/2.0-RC2/src/schmitzm/jfree/feature/style
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Wed Feb 3 21:07:17 CET 2010
Author: alfonx
Date: 2010-02-03 21:07:15 +0100 (Wed, 03 Feb 2010)
New Revision: 672
Modified:
branches/2.0-RC2/src/schmitzm/jfree/feature/style/FeatureChartUtil.java
Log:
* Added soem frensh i8n
* NodataEditListDialog can not edit in table
Modified: branches/2.0-RC2/src/schmitzm/jfree/feature/style/FeatureChartUtil.java
===================================================================
--- branches/2.0-RC2/src/schmitzm/jfree/feature/style/FeatureChartUtil.java 2010-02-03 19:08:37 UTC (rev 671)
+++ branches/2.0-RC2/src/schmitzm/jfree/feature/style/FeatureChartUtil.java 2010-02-03 20:07:15 UTC (rev 672)
@@ -280,15 +280,22 @@
Number xValue = (Number) f.getAttribute(xAttrName);
// Filter out NODATA values
+ System.out.println("X " + xValue+" tested against "+chartStyle.getNoDataValues(0));
xValue = chartStyle.filterNoDataValue(0, xValue);
if (xValue == null)
continue;
+
// Determine the Y values and fill the series
for (int attrIdx = 1; attrIdx < attrCount; attrIdx++) {
String yAttrName = chartStyle.getAttributeName(attrIdx);
Number yValue = (Number) f.getAttribute(yAttrName);
+ System.out.println("Y ("+attrIdx+")"+yValue +" tested against "+chartStyle.getNoDataValues(attrIdx));
+
+ if (yValue.floatValue() == 7.85) {
+ System.out.print("!!!!!!!!!!");
+ }
// Filter out NoDataValues
yValue = chartStyle.filterNoDataValue(attrIdx, yValue);
if (yValue == null)
More information about the Schmitzm-commits
mailing list