Ejemplo n.º 1
0
 /**
  * Create a JpGraph accumulated barPlot chart 
  *
  * @param Array $bplot Array of JpGraph barPlot objects
  * @param Chart $graph The output graph that will contains accumulated barPlots
  *
  * @return Void
  */
 private function displayAccumulatedGraph($bplot, $graph)
 {
     $abplot = new AccBarPlot($bplot);
     $abplot->SetAbsWidth(10);
     $graph->Add($abplot);
     $graph->Stroke();
 }