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 MediumTooltip extends BasicTooltip
{
* If true, show colored squares next to the series information in the tooltip. The default is true when
* focusTarget is set to 'category', otherwise the default is false.
*
* @var bool
protected $showColorCode;
* @param bool $showColorCode
* @return $this
public function setShowColorCode($showColorCode)
$this->showColorCode = $showColorCode;
return $this;
}