Changeset 5
- Timestamp:
- 03/21/08 14:22:00 (8 months ago)
- Files:
-
- trunk/data/nodes_all.xml (added)
- trunk/net/relet/freimap/LinkInfo.java (modified) (3 diffs)
- trunk/net/relet/freimap/NodeInfo.java (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/net/relet/freimap/LinkInfo.java
r1 r5 23 23 package net.relet.freimap; 24 24 25 import java.awt.Color; 25 26 import java.util.*; 26 27 … … 194 195 } else if (plot instanceof XYPlot) { 195 196 XYPlot xyplot=(XYPlot)plot; 196 xyplot.setBackgroundPaint(VisorFrame.bgcolor2); 197 //xyplot.setBackgroundPaint(VisorFrame.bgcolor2); 198 xyplot.setBackgroundPaint(Color.black); 197 199 xyplot.setDomainAxis(new DateAxis()); 198 200 sexupAxis(xyplot.getDomainAxis()); … … 202 204 private void sexupLayout(JFreeChart chart) { 203 205 chart.setAntiAlias(true); 204 chart.setBackgroundPaint(VisorFrame.bgcolor2); 206 //chart.setBackgroundPaint(VisorFrame.bgcolor2); 207 chart.setBackgroundPaint(Color.black); 205 208 chart.setBorderVisible(false); 206 209 TextTitle title=chart.getTitle(); trunk/net/relet/freimap/NodeInfo.java
r1 r5 23 23 package net.relet.freimap; 24 24 25 import java.awt.Color; 25 26 import java.util.*; 26 27 … … 115 116 private void sexupLayout(JFreeChart chart) { 116 117 chart.setAntiAlias(true); 117 chart.setBackgroundPaint(VisorFrame.bgcolor); 118 // chart.setBackgroundPaint(VisorFrame.bgcolor); 119 chart.setBackgroundPaint(Color.black); 118 120 chart.setBorderVisible(false); 119 121 TextTitle title=chart.getTitle(); … … 121 123 title.setPaint(VisorFrame.fgcolor); 122 124 XYPlot plot=chart.getXYPlot(); 123 plot.setBackgroundPaint(VisorFrame.bgcolor); 125 // plot.setBackgroundPaint(VisorFrame.bgcolor); 126 plot.setBackgroundPaint(Color.black); 124 127 plot.setDomainAxis(new DateAxis()); 125 128 sexupAxis(plot.getDomainAxis());
