for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;
/**
* @author Christophe Meneses
*/
class BoxStyle
{
use StrokeTrait;
use StrokeWidthTrait;
* x-radius of the corner curvature.
*
* @var int
protected $rx;
* y-radius of the corner curvature.
protected $ry;
* @var Gradient
protected $gradient;
* BoxStyle constructor.
public function __construct()
$this->gradient = new Gradient();
}
* @param int $rx
* @return $this
public function setRx($rx)
$this->rx = $rx;
return $this;
* @param int $ry
public function setRy($ry)
$this->ry = $ry;