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 AdvancedAnimation extends Animation
{
* Determines if the chart will animate on the initial draw. If true, the chart will start at the baseline and
* animate to its final state.
*
* @var bool
protected $startup;
* @return $this
public function setStartup(bool $startup)
$this->startup = $startup;
return $this;
}