for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options\GanttChart;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\ChartOptionsInterface;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\HeightTrait;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\WidthTrait;
/**
* @author Christophe Meneses
*/
class GanttChartOptions implements ChartOptionsInterface
{
* @var BackgroundColor
protected $backgroundColor;
use HeightTrait;
* @var Gantt
protected $gantt;
use WidthTrait;
* GanttChartOptions constructor.
public function __construct()
$this->backgroundColor = new BackgroundColor();
$this->gantt = new Gantt();
}
* @return BackgroundColor
public function getBackgroundColor()
return $this->backgroundColor;
* @return Gantt
public function getGantt()
return $this->gantt;