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
{
use ColorTrait;
* The angle of the head of the arrow.
*
* @var int
protected $angle;
* 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;
* @return $this
public function setAngle(int $angle)
$this->angle = $angle;
return $this;
}
public function setLength(int $length)
$this->length = $length;
public function setRadius(int $radius)
$this->radius = $radius;
public function setSpaceAfter(int $spaceAfter)
$this->spaceAfter = $spaceAfter;
public function setWidth(float $width)
$this->width = $width;