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
*/
trait BarsTrait
{
* Whether the bars in a Material Bar Chart are vertical or horizontal.
*
* Default: 'vertical'
* @var string
protected $bars;
* @param string $bars
* @return $this
public function setBars($bars)
$this->bars = $bars;
return $this;
}