From cbb6557c2fe1694ac974bd84060c13704dbd9f8f Mon Sep 17 00:00:00 2001 From: osmiy Date: Mon, 15 May 2006 12:48:41 +0000 Subject: - fixed left axis calculation of graph (Eugene) git-svn-id: svn://svn.zabbix.com/trunk@2841 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/include/classes/graph.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontends/php/include/classes/graph.inc.php') diff --git a/frontends/php/include/classes/graph.inc.php b/frontends/php/include/classes/graph.inc.php index b62107ce..4fbd5086 100644 --- a/frontends/php/include/classes/graph.inc.php +++ b/frontends/php/include/classes/graph.inc.php @@ -777,8 +777,8 @@ { if($this->yaxisleft == 1) { - $minY = $this->m_minY[GRAPH_YAXIS_SIDE_RIGHT]; - $maxY = $this->m_maxY[GRAPH_YAXIS_SIDE_RIGHT]; + $minY = $this->m_minY[GRAPH_YAXIS_SIDE_LEFT]; + $maxY = $this->m_maxY[GRAPH_YAXIS_SIDE_LEFT]; for($item=0;$item<$this->num;$item++) { -- cgit