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