summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/classes/graph.inc.php
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-05-15 12:48:41 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-05-15 12:48:41 +0000
commitcbb6557c2fe1694ac974bd84060c13704dbd9f8f (patch)
tree7b611e28fdad57cb6523f6cc4f8a806a640efd72 /frontends/php/include/classes/graph.inc.php
parent745144d3f4d3c55f843a2d27ffca2bae877ac8f0 (diff)
downloadzabbix-cbb6557c2fe1694ac974bd84060c13704dbd9f8f.tar.gz
zabbix-cbb6557c2fe1694ac974bd84060c13704dbd9f8f.tar.xz
zabbix-cbb6557c2fe1694ac974bd84060c13704dbd9f8f.zip
- fixed left axis calculation of graph (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@2841 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/classes/graph.inc.php')
-rw-r--r--frontends/php/include/classes/graph.inc.php4
1 files changed, 2 insertions, 2 deletions
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++)
{