Package eas.plugins.standard.visualization.chartPlugin

Examples of eas.plugins.standard.visualization.chartPlugin.ChartEventStoreAsPDF


            umg.getSimTime().broadcastEvent(event4);
            umg.getSimTime().broadcastEvent(event5);
           
            // Store charts as pdf.
            if (simZyk.getLastTick() % 100 == 0 && params.getParValueBoolean("StoreChartsAsPDF?")) {
                umg.getSimTime().broadcastEvent(new ChartEventStoreAsPDF("Panic Chart 1", new File("panic1-" + simZyk.getLastTick() + ".pdf")));
                umg.getSimTime().broadcastEvent(new ChartEventStoreAsPDF("Panic Chart 2", new File("panic2-" + simZyk.getLastTick() + ".pdf")));
            }
        }
    }
View Full Code Here


    this.getSimTime().broadcastEvent(chart2);
//    this.getSimTime().broadcastEvent(chart3);
//    this.getSimTime().broadcastEvent(chart4);
   
    if (simTime.getLastTick() == 5000){
      this.getSimTime().broadcastEvent(new ChartEventStoreAsPDF("Weglängen zum Futter", new File("Grafik_Ameisenalgorithmus.pdf")));
        }
   
    //Pheromon evaporiert
    for (int i = 0; i < this.getWidth(); i++) {
      for (int j = 0; j < this.getHeight(); j++) {
View Full Code Here

            String dateiname = this.pars.getStdDirectory() + "/"
                    + this.pars.getParValueString("DateinamePraefix")
                    + chartName + ".pdf";
           
            env.getSimTime().broadcastEvent(
                    new ChartEventStoreAsPDF(
                            chartName,
                            new File(dateiname)));
        }
       
        // Store Data.
View Full Code Here

TOP

Related Classes of eas.plugins.standard.visualization.chartPlugin.ChartEventStoreAsPDF

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.