for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options\Diff\DiffBarChart;
/**
* @author Christophe Meneses
*/
class NewData
{
* Let you control the relative width of the old and new bars.
*
* @var float
protected $widthFactor;
* @return $this
public function setWidthFactor(float $widthFactor)
$this->widthFactor = $widthFactor;
return $this;
}