for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Charts\Material;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\ChartOptionsInterface;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\ScatterChart\Material\ScatterChartOptions;
/**
* @author Christophe Meneses
*/
class ScatterChart extends \CMEN\GoogleChartsBundle\GoogleCharts\Charts\ScatterChart
{
* @var ScatterChartOptions
protected ChartOptionsInterface $options;
public function __construct()
parent::__construct();
$this->options = new ScatterChartOptions();
}
public function getPackage(): string
return 'scatter';
public function getLibrary(): string
return 'charts';
public function getType(): string
return 'Scatter';
public function getOptions(): ScatterChartOptions
return $this->options;
return $this->options
CMEN\GoogleChartsBundle\...s\ChartOptionsInterface
CMEN\GoogleChartsBundle\...ial\ScatterChartOptions