Home
last modified time | relevance | path

Searched refs:VXMax (Results 1 – 3 of 3) sorted by relevance

/plugin/projects/pchart/pchart/
Dpchart.php151 var $VXMax = NULL; variable in pChart
355 $this->VXMax = NULL;
360 function setFixedScale($VMin,$VMax,$Divisions=5,$VXMin=0,$VXMax=0,$XDivisions=5) argument
369 $this->VXMax = $VXMax;
759 if ( $this->VXMin == NULL && $this->VXMax == NULL)
762 $this->VXMax = $Data[0][$XSerieName] + 0;
769 if ( $this->VXMax < $Value) { $this->VXMax = $Value; }
774 if ( $this->VXMax > preg_replace('/\.[0-9]+/','',$this->VXMax) )
775 $this->VXMax = preg_replace('/\.[0-9]+/','',$this->VXMax)+1;
784 if ( $this->VXMin == 0 && $this->VXMax == 0 )
[all …]
/plugin/charter/lib/pchart/
DpChart.class.php151 var $VXMax = NULL; variable in pChart
355 $this->VXMax = NULL;
360 function setFixedScale($VMin,$VMax,$Divisions=5,$VXMin=0,$VXMax=0,$XDivisions=5) argument
369 $this->VXMax = $VXMax;
759 if ( $this->VXMin == NULL && $this->VXMax == NULL)
762 $this->VXMax = $Data[0][$XSerieName];
769 if ( $this->VXMax < $Value) { $this->VXMax = $Value; }
774 if ( $this->VXMax > preg_replace('/\.[0-9]+/','',$this->VXMax) )
775 $this->VXMax = preg_replace('/\.[0-9]+/','',$this->VXMax)+1;
784 if ( $this->VXMin == 0 && $this->VXMax == 0 )
[all …]
/plugin/statdisplay/pchart/
DpChart.php75 protected $VXMax = NULL; variable in pChart
276 $this->VXMax = NULL;
284 function setFixedScale($VMin, $VMax, $Divisions = 5, $VXMin = 0, $VXMax = 0, $XDivisions = 5) { argument
291 $this->VXMax = $VXMax;
700 if ($this->VXMin == NULL && $this->VXMax == NULL) {
701 $this->VXMax = $Data->getSeriesMax($XSerieName);
704 $this->VXMax = ceil($this->VXMax);
713 $this->VXMin, $this->VXMax,
721 $XDataRange = $this->VXMax - $this->VXMin;
739 $Value = $this->VXMin + ($i - 1) * (($this->VXMax - $this->VXMin) / $XDivisions);