/** Builds a BarChartGenerator not attached to any MASON simulation. */
 public static BarChartGenerator buildBarChartGenerator(String title) {
   BarChartGenerator chart = new BarChartGenerator();
   if (title == null) title = "";
   chart.setTitle(title);
   return chart;
 }