[Swift-commit] r8233 - usertools/plotter/src/plotter
wozniak at ci.uchicago.edu
wozniak at ci.uchicago.edu
Thu Aug 28 09:37:42 CDT 2014
Author: wozniak
Date: 2014-08-28 09:37:41 -0500 (Thu, 28 Aug 2014)
New Revision: 8233
Modified:
usertools/plotter/src/plotter/Lines.java
Log:
Merge
Modified: usertools/plotter/src/plotter/Lines.java
===================================================================
--- usertools/plotter/src/plotter/Lines.java 2014-08-27 20:18:18 UTC (rev 8232)
+++ usertools/plotter/src/plotter/Lines.java 2014-08-28 14:37:41 UTC (rev 8233)
@@ -19,11 +19,7 @@
import org.jfree.chart.ChartFactory;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.annotations.XYTextAnnotation;
-import org.jfree.chart.axis.DateAxis;
-import org.jfree.chart.axis.LogAxis;
-import org.jfree.chart.axis.LogarithmicAxis;
-import org.jfree.chart.axis.NumberAxis;
-import org.jfree.chart.axis.ValueAxis;
+import org.jfree.chart.axis.*;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.renderer.xy.XYLineAndShapeRenderer;
@@ -329,8 +325,8 @@
}
else if (axis_x_type.equals("date"))
{
- DateAxis dateAxis = new DateAxis(xlabel);
- plot.setDomainAxis(dateAxis);
+ DateAxis domainAxis = new DateAxis();
+ plot.setDomainAxis(domainAxis);
}
else if (!axis_x_type.equals("normal"))
throw new UserInputException
More information about the Swift-commit
mailing list