for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options\GanttChart;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\ColorTrait;
/**
* @author Christophe Meneses
*/
class Arrow
{
* The angle of the head of the arrow.
*
* @var int
protected $angle;
use ColorTrait;
* The length of the head of the arrow.
protected $length;
* The radius for defining the curve of the arrow between two tasks.
protected $radius;
* The amount of whitespace between the head of an arrow and the task to which it points.
protected $spaceAfter;
* The width of the arrows.
* @var float
protected $width;
* @param int $angle
* @return $this
public function setAngle($angle)
$this->angle = $angle;
return $this;
}
* @param int $length
public function setLength($length)
$this->length = $length;
* @param int $radius
public function setRadius($radius)
$this->radius = $radius;
* @param int $spaceAfter
public function setSpaceAfter($spaceAfter)
$this->spaceAfter = $spaceAfter;
* @param float $width
public function setWidth($width)
$this->width = $width;