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 Animation
{
* The duration of the animation, in milliseconds. For details, see the animation documentation.
* {@link https://developers.google.com/chart/interactive/docs/animation}.
*
* @var int
protected $duration;
* The easing function applied to the animation. The following options are available :
* 'linear' - Constant speed.
* 'in' - Ease in - Start slow and speed up.
* 'out' - Ease out - Start fast and slow down.
* 'inAndOut' - Ease in and out - Start slow, speed up, then slow down.
* @var string
protected $easing;
* @param int $duration
* @return $this
public function setDuration($duration)
$this->duration = $duration;
return $this;
}
* @param string $easing
public function setEasing($easing)
$this->easing = $easing;