From: Arne V. <cob...@us...> - 2004-10-28 20:04:53
|
Update of /cvsroot/jrobin/src/org/jrobin/demo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12533/org/jrobin/demo Modified Files: PlottableDemo.java Log Message: JRobin 1.4.1 - Fixing bug #0000067 - Note: Importing of ExportData is broken in this commit! Index: PlottableDemo.java =================================================================== RCS file: /cvsroot/jrobin/src/org/jrobin/demo/PlottableDemo.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PlottableDemo.java 27 Oct 2004 20:36:25 -0000 1.3 --- PlottableDemo.java 28 Oct 2004 20:04:42 -0000 1.4 *************** *** 59,63 **** private PlottableDemo() throws RrdException, IOException { createGraph1(); ! /*createGraph2(); createGraph3(); createGraph4(); --- 59,63 ---- private PlottableDemo() throws RrdException, IOException { createGraph1(); ! createGraph2(); createGraph3(); createGraph4(); *************** *** 73,77 **** createGraph14(); createGraph15(); ! createGraph16();*/ createGraph17(); } --- 73,77 ---- createGraph14(); createGraph15(); ! createGraph16(); createGraph17(); } *************** *** 476,479 **** --- 476,480 ---- String filename = Util.getJRobinDemoPath("plottable" + (++count) + ".png"); graph.saveAsPNG(filename, 800, 400); + //graph.getExportData().exportXml( System.out ); System.out.println("Saved to: " + filename); } |