|
@@ -1416,8 +1416,8 @@ public class FormulaUtils {
|
|
|
chart.getLegend().setItemFont(font);
|
|
|
chart.getLegend().setVisible(false);
|
|
|
XYPlot plot = (XYPlot) chart.getPlot();
|
|
|
- plot.setDomainGridlinesVisible(true);
|
|
|
- plot.setRangeGridlinesVisible(true);
|
|
|
+ plot.setDomainGridlinesVisible(false);
|
|
|
+ plot.setRangeGridlinesVisible(false);
|
|
|
plot.setDomainGridlinePaint(Color.LIGHT_GRAY);
|
|
|
plot.setRangeGridlinePaint(Color.LIGHT_GRAY);
|
|
|
plot.setBackgroundPaint(Color.WHITE);
|
|
@@ -1457,7 +1457,7 @@ public class FormulaUtils {
|
|
|
rangeAxis.setTickUnit(new NumberTickUnit(10));
|
|
|
rangeAxis.setLabelFont(font);
|
|
|
rangeAxis.setTickLabelFont(font);
|
|
|
-
|
|
|
+ rangeAxis.setVisible(false);
|
|
|
return chart;
|
|
|
}
|
|
|
public static void mainT(String[] args) throws IOException {
|