summaryrefslogtreecommitdiffstats
path: root/frontends/php/chart3.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-07-16 10:01:08 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-07-16 10:01:08 +0000
commit4e4aa7eb198963720b377cd568825309616dce8a (patch)
treee1c0bb863be19aeb630bf5ef77fb8c3c8e27731f /frontends/php/chart3.php
parentbac3a136113548551ad7320cc8a8ed7ecbb2e11a (diff)
downloadzabbix-4e4aa7eb198963720b377cd568825309616dce8a.tar.gz
zabbix-4e4aa7eb198963720b377cd568825309616dce8a.tar.xz
zabbix-4e4aa7eb198963720b377cd568825309616dce8a.zip
- added pie graphs (Artem)
- added subclasses chart.inc.php and pie.inc.php, extending graph.inc.php (Artem) git-svn-id: svn://svn.zabbix.com/trunk@4458 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/chart3.php')
-rw-r--r--frontends/php/chart3.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/chart3.php b/frontends/php/chart3.php
index c9360b66..311a141e 100644
--- a/frontends/php/chart3.php
+++ b/frontends/php/chart3.php
@@ -21,7 +21,7 @@
<?php
require_once "include/config.inc.php";
require_once "include/graphs.inc.php";
- require_once "include/classes/graph.inc.php";
+ require_once "include/classes/chart.inc.php";
$page["file"] = "chart3.php";
$page["title"] = "S_CHART";
@@ -66,7 +66,7 @@ include_once "include/page_header.php";
}
}
- $graph = new Graph(get_request("graphtype" ,GRAPH_TYPE_NORMAL));
+ $graph = new Chart(get_request("graphtype" ,GRAPH_TYPE_NORMAL));
$graph->SetHeader($host["host"].":".get_request("name",""));