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 ViewWindow
{
* The zero-based row index where the cropping window ends. Data points at this index and higher will be cropped
* out. In conjunction with vAxis.viewWindowMode.min, it defines a half-opened range [min, max) that denotes the
* element indices to display. In other words, every index such that min <= index < max will be displayed.
* Ignored when hAxis.viewWindowMode is 'pretty' or 'maximized'.
*
* @var int|int[]
protected $max;
* The zero-based row index where the cropping window begins. Data points at indices lower than this will be
* cropped out. In conjunction with vAxis.viewWindowMode.max, it defines a half-opened range [min, max) that
* denotes the element indices to display. In other words, every index such that min <= index < max will be
* displayed. Ignored when hAxis.viewWindowMode is 'pretty' or 'maximized'.
protected $min;
* @param int|int[] $max
* @return $this
public function setMax($max)
$this->max = $max;
return $this;
}
* @param int|int[] $min
public function setMin($min)
$this->min = $min;