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 SelectionModeTrait
{
* When selectionMode is 'multiple', users may select multiple data points.
*
* Default: 'single'
* @var string
protected $selectionMode;
* @param string $selectionMode
* @return $this
public function setSelectionMode($selectionMode)
$this->selectionMode = $selectionMode;
return $this;
}