public function __construct()
 {
     parent::__construct();
     $this->type = new GoogleChartType(GoogleChartType::LINE);
     $this->color = GoogleChartColor::create();
     $this->legend = GoogleChartLegend::create()->setPosition(GoogleChartLegendPositionType::create(GoogleChartLegendPositionType::BOTTOM));
     $this->data = GoogleChartData::create()->setEncoding(GoogleChartDataTextEncoding::create())->setDataScaling();
     $this->axesCollection = GoogleChartAxisCollection::create();
     $this->style = GoogleChartLineStyle::create();
     $this->labelStyle = GoogleChartLabelStyle::create();
 }
 public function __construct()
 {
     $this->position = GoogleChartLegendPositionType::create(GoogleChartLegendPositionType::LEFT);
 }