for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options\AreaChart;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\Annotations;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\AreaOpacityTrait;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\LineSeries;
/**
* @author Christophe Meneses
*/
class Series extends LineSeries
{
use AreaOpacityTrait;
* @var Annotations
protected $annotations;
public function __construct()
$this->annotations = new Annotations();
}
public function getAnnotations(): Annotations
return $this->annotations;