Ejemplo n.º 1
0
 /** Builds a BoxPlotGenerator not attached to any MASON simulation. */
 public static BoxPlotGenerator buildBoxPlotGenerator(String title, String rangeAxisLabel) {
   BoxPlotGenerator chart = new BoxPlotGenerator();
   if (title == null) title = "";
   chart.setTitle(title);
   if (rangeAxisLabel == null) rangeAxisLabel = "";
   chart.setYAxisLabel(rangeAxisLabel);
   return chart;
 }