for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options\Diff\DiffPieChart;
/**
* @author Christophe Meneses
*/
class InnerCircle
{
* Relative size of the circles.
*
* @var float
protected $radiusFactor;
* Border between the two circles.
protected $borderFactor;
* @return $this
public function setRadiusFactor(float $radiusFactor)
$this->radiusFactor = $radiusFactor;
return $this;
}
public function setBorderFactor(float $borderFactor)
$this->borderFactor = $borderFactor;