Lines Matching refs:VMin

72     protected $VMin = NULL;
270 $this->VMin = NULL;
281 function setFixedScale($VMin, $VMax, $Divisions = 5, $VXMin = 0, $VXMax = 0, $XDivisions = 5) {
282 $this->VMin = $VMin;
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);
560 $this->VMin = $dataArray[0] [$Data->getDataDescription()->values[0]];
563 $this->VMin = 2147483647;
572 $this->VMin = 0;
584 if($this->VMin > $Value) {
585 $this->VMin = $Value;
593 $this->VMin = 0;
609 if($this->VMin > $Sum) {
610 $this->VMin = $Sum;
618 if($this->VMax == $this->VMin) {
622 $this->VMin--;
626 $DataRange = $this->VMax - $this->VMin;
667 if($this->VMin == NULL && $this->VMax == NULL) {
668 $this->VMin = $Data->getSeriesMin($YSerieName);
675 $DataRange = $this->VMax - $this->VMin;
683 $this->VMin,
692 $DataRange = $this->VMax - $this->VMin;
711 $Value = $this->VMin + ($i - 1) * (($this->VMax - $this->VMin) / $Divisions);
746 $DataRange = $this->VMax - $this->VMin;
1203 $Y = $this->GArea_Y2 - ($Value - $this->VMin) * $this->DivisionRatio;
1278 $YPos = $this->GArea_Y2 - ($NumericalValue - $this->VMin) * $this->DivisionRatio;
1406 $YPos = $this->GArea_Y2 - (($Value - $this->VMin) * $this->DivisionRatio);
1491 $Y = $this->GArea_Y2 - (($Y - $this->VMin) * $this->DivisionRatio);
1572 $YPos1 = $LayerHeight - (($Value1 - $this->VMin) * $this->DivisionRatio);
1573 $YPos2 = $LayerHeight - (($Value2 - $this->VMin) * $this->DivisionRatio);
1622 $YPos = $this->GArea_Y2 - (($Value - $this->VMin) * $this->DivisionRatio);
1665 $YPos = $this->GArea_Y2 - (($Value - $this->VMin) * $this->DivisionRatio);
1716 $Y = $this->GArea_Y2 - (($Y - $this->VMin) * $this->DivisionRatio);
1826 $YPos = $this->GArea_Y2 - (($Value - $this->VMin) * $this->DivisionRatio);
1850 $YPos = $this->GArea_Y2 - (($YIn [$Index] - $this->VMin) * $this->DivisionRatio);
1907 $YZero = $LayerHeight - ((0 - $this->VMin) * $this->DivisionRatio);
1963 $YPos = $LayerHeight - (($Value - $this->VMin) * $this->DivisionRatio);
2007 $YPos = $LayerHeight - (($YIn [$numElements] - $this->VMin) * $this->DivisionRatio);
2078 $YZero = $LayerHeight - ((0 - $this->VMin) * $this->DivisionRatio);
2086 $YPos = $LayerHeight - (($Value - $this->VMin) * $this->DivisionRatio);
2169 $YZero = $LayerHeight - ((0 - $this->VMin) * $this->DivisionRatio);
2174 $YPos = $LayerHeight - (($Value - $this->VMin) * $this->DivisionRatio);
2190 $Y2 = $this->GArea_Y2 - ((0 - $this->VMin) * $this->DivisionRatio);
2237 $YZero = $this->GArea_Y2 - ((0 - $this->VMin) * $this->DivisionRatio);
2252 $YPos = $this->GArea_Y2 - (($Value - $this->VMin) * $this->DivisionRatio);
2301 $YZero = $this->GArea_Y2 - ((0 - $this->VMin) * $this->DivisionRatio);
2318 $YPos = $this->GArea_Y2 - ((($Value + $LastValue [$Key]) - $this->VMin) * $this->DivisionRatio);
2319 $YBottom = $this->GArea_Y2 - (($LastValue [$Key] - $this->VMin) * $this->DivisionRatio);
2322 $YPos = $this->GArea_Y2 - (($Value - $this->VMin) * $this->DivisionRatio);
2389 $YPos = $this->GArea_Y2 - (($Max - $this->VMin) * $this->DivisionRatio);
2400 $YPos = $this->GArea_Y2 - (($Min - $this->VMin) * $this->DivisionRatio);
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) {
3218 $this->VMin = 0;
3224 $Scale1 = ($this->VMax - $this->VMin) / $Factor;
3225 $Scale2 = ($this->VMax - $this->VMin) / $Factor / 2;
3253 if(floor($this->VMin / $Scale / $Factor) != $this->VMin / $Scale / $Factor) {
3254 $GridID = floor($this->VMin / $Scale / $Factor);
3255 $this->VMin = $GridID * $Scale * $Factor;