function GraphSplitBar($width = 600, $height = 250, $showLabelBar2 = true)
 {
     parent::PmvGraph($width, $height);
     $this->showLabelBar2 = $showLabelBar2;
 }
 function GraphBarAndCurb($width, $height, $showAllLabels = true)
 {
     parent::PmvGraph($width, $height);
     $this->showLabelBar2 = $showAllLabels;
 }
 function Graph3DPie($width, $height, $set3D = true)
 {
     parent::PmvGraph($width, $height);
     $this->set3D = $set3D;
 }
 function GraphVerticalBar($width, $height)
 {
     parent::PmvGraph($width, $height);
 }