for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options\CalendarChart;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\ColorTrait;
/**
* Calendar charts use a striped diagonal pattern to indicate that there is no data for a particular day. Use the
* noDataPattern.backgroundColor and noDataPattern.color options to override the grayscale defaults.
*
* @author Christophe Meneses
*/
class NoDataPattern
{
use ColorTrait;
* @var string
protected $backgroundColor;
* @return $this
public function setBackgroundColor(string $backgroundColor)
$this->backgroundColor = $backgroundColor;
return $this;
}