Lines Matching defs:VMax

71     protected $VMax = NULL;
271 $this->VMax = NULL;
281 function setFixedScale($VMin, $VMax, $Divisions = 5, $VXMin = 0, $VXMax = 0, $XDivisions = 5) {
283 $this->VMax = $VMax;
325 if($this->VMin == NULL && $this->VMax == NULL) {
332 $DataRange = $this->VMax - $this->VMin;
380 $Value = $this->VMin + ($i - 1) * (($this->VMax - $this->VMin) / $Divisions);
561 $this->VMax = $dataArray[0] [$Data->getDataDescription()->values[0]];
564 $this->VMax = -2147483647;
581 if($this->VMax < $Value) {
582 $this->VMax = $Value;
606 if($this->VMax < $Sum) {
607 $this->VMax = $Sum;
615 $this->VMax = ceil($this->VMax);
618 if($this->VMax == $this->VMin) {
619 if($this->VMax >= 0) {
620 $this->VMax++;
626 $DataRange = $this->VMax - $this->VMin;
667 if($this->VMin == NULL && $this->VMax == NULL) {
669 $this->VMax = $Data->getSeriesMax($YSerieName);
673 $this->VMax = ceil($this->VMax);
675 $DataRange = $this->VMax - $this->VMin;
684 $this->VMax,
692 $DataRange = $this->VMax - $this->VMin;
711 $Value = $this->VMin + ($i - 1) * (($this->VMax - $this->VMin) / $Divisions);
746 $DataRange = $this->VMax - $this->VMin;
3213 if($this->VMax <= $this->VMin) {
3214 throw new Exception("Impossible to calculate scales when VMax <= VMin");
3217 if($this->VMin == 0 && $this->VMax == 0) {
3219 $this->VMax = 2;
3224 $Scale1 = ($this->VMax - $this->VMin) / $Factor;
3225 $Scale2 = ($this->VMax - $this->VMin) / $Factor / 2;
3247 if(floor($this->VMax / $Scale / $Factor) != $this->VMax / $Scale / $Factor) {
3248 $GridID = floor($this->VMax / $Scale / $Factor) + 1;
3249 $this->VMax = $GridID * $Scale * $Factor;