From 5e528e558a767aa2c6cf4f1ae4581d4a3f986f06 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Mon, 30 Jun 2003 13:53:30 +0000 Subject: [PATCH] Suppression de la modif sur function SetVertTickIncrement($which_ti) --- htdocs/includes/phplot/phplot.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/includes/phplot/phplot.php b/htdocs/includes/phplot/phplot.php index 50df1d9f398..f0a37bc6e67 100644 --- a/htdocs/includes/phplot/phplot.php +++ b/htdocs/includes/phplot/phplot.php @@ -1461,8 +1461,8 @@ class PHPlot { $this->FindDataLimits(); //Get maxima and minima for scaling } - $this->vert_tick_increment = ceil(( ceil($this->max_y * 1.2) - floor($this->min_y * 1.2) )/10); - //$this->vert_tick_increment = ceil(($this->plot_max_y - $this->plot_min_y )/10); + //$this->vert_tick_increment = ceil(( ceil($this->max_y * 1.2) - floor($this->min_y * 1.2) )/10); + $this->vert_tick_increment = ($this->plot_max_y - $this->plot_min_y )/10; } $this->num_vert_ticks = ''; //either use num_vert_ticks or vert_tick_increment, not both return true;