function output(\Radical\Utility\Image\Graph\Schema\Graph $pChart)
 {
     ob_start();
     parent::Output($pChart);
     $string = ob_get_contents();
     ob_end_clean();
     return $string;
 }
 function output(\Radical\Utility\Image\Graph\Schema\Graph $pChart)
 {
     parent::Output($pChart);
     header('Content-Type: image/png', true);
 }