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 SizeAxis
{
* Maximum radius of the largest possible bubble, in pixels.
*
* @var int
protected $maxSize;
* The size value (as appears in the chart data) to be mapped to sizeAxis.maxSize. Larger values will be cropped
* to this value.
protected $maxValue;
* Mininum radius of the smallest possible bubble, in pixels.
protected $minSize;
* The size value (as appears in the chart data) to be mapped to sizeAxis.minSize. Smaller values will be cropped
protected $minValue;
* @return $this
public function setMaxSize(int $maxSize)
$this->maxSize = $maxSize;
return $this;
}
public function setMaxValue(int $maxValue)
$this->maxValue = $maxValue;
public function setMinSize(int $minSize)
$this->minSize = $minSize;
public function setMinValue(int $minValue)
$this->minValue = $minValue;