logger graph asthetics improved

git-svn-id: http://svn.3splooges.com/romraider-arch/trunk@444 d2e2e1cd-ba16-0410-be16-b7c4453c7c2d
This commit is contained in:
kascade 2007-01-19 02:10:18 +00:00
parent 7db1c86c9c
commit 17e5665d30
1 changed files with 5 additions and 5 deletions

View File

@ -43,8 +43,8 @@ import org.jfree.data.xy.XYSeriesCollection;
public final class GraphUpdateHandler implements DataUpdateHandler, ConvertorUpdateListener { public final class GraphUpdateHandler implements DataUpdateHandler, ConvertorUpdateListener {
private static final Color RED = new Color(190, 30, 30); private static final Color RED = new Color(190, 30, 30);
private static final Color DARK_GREY = new Color(56, 56, 56); private static final Color DARK_GREY = new Color(80, 80, 80);
private static final Color LIGHT_GREY = new Color(99, 99, 99); private static final Color LIGHT_GREY = new Color(110, 110, 110);
private final JPanel graphPanel; private final JPanel graphPanel;
private final Map<EcuData, ChartPanel> chartMap = synchronizedMap(new HashMap<EcuData, ChartPanel>()); private final Map<EcuData, ChartPanel> chartMap = synchronizedMap(new HashMap<EcuData, ChartPanel>());
private final Map<EcuData, XYSeries> seriesMap = synchronizedMap(new HashMap<EcuData, XYSeries>()); private final Map<EcuData, XYSeries> seriesMap = synchronizedMap(new HashMap<EcuData, XYSeries>());
@ -103,13 +103,13 @@ public final class GraphUpdateHandler implements DataUpdateHandler, ConvertorUpd
final XYPlot plot = chart.getXYPlot(); final XYPlot plot = chart.getXYPlot();
plot.setBackgroundPaint(BLACK); plot.setBackgroundPaint(BLACK);
plot.getRenderer().setPaint(RED); plot.getRenderer().setPaint(RED);
plot.setDomainGridlinePaint(DARK_GREY);
plot.setRangeGridlinePaint(DARK_GREY);
plot.setOutlinePaint(DARK_GREY);
plot.getDomainAxis().setLabelPaint(WHITE); plot.getDomainAxis().setLabelPaint(WHITE);
plot.getRangeAxis().setLabelPaint(WHITE); plot.getRangeAxis().setLabelPaint(WHITE);
plot.getDomainAxis().setTickLabelPaint(LIGHT_GREY); plot.getDomainAxis().setTickLabelPaint(LIGHT_GREY);
plot.getRangeAxis().setTickLabelPaint(LIGHT_GREY); plot.getRangeAxis().setTickLabelPaint(LIGHT_GREY);
plot.setDomainGridlinePaint(DARK_GREY);
plot.setRangeGridlinePaint(DARK_GREY);
plot.setOutlinePaint(DARK_GREY);
return chart; return chart;
} }