aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/wireless.php
diff options
context:
space:
mode:
authorPim van den Berg2014-05-03 18:15:12 +0200
committerPim van den Berg2014-05-03 19:21:36 +0200
commitedae75c21a8f657dd6cc9ace9e8e844ef337a951 (patch)
treeda0c2b4a1ef35a3d2d8c129925e257f6a6f7fbe3 /plugin/wireless.php
parenttype/base: set default values for rrd_title and rrd_format (diff)
downloadapt-panopticon_cgp-edae75c21a8f657dd6cc9ace9e8e844ef337a951.zip
apt-panopticon_cgp-edae75c21a8f657dd6cc9ace9e8e844ef337a951.tar.gz
apt-panopticon_cgp-edae75c21a8f657dd6cc9ace9e8e844ef337a951.tar.bz2
apt-panopticon_cgp-edae75c21a8f657dd6cc9ace9e8e844ef337a951.tar.xz
rename ds_names and dsname to legend
This had nothing to do with an RRD data source.
Diffstat (limited to '')
-rw-r--r--plugin/wireless.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/wireless.php b/plugin/wireless.php
index 991a0f3..cb3a8a9 100644
--- a/plugin/wireless.php
+++ b/plugin/wireless.php
@@ -7,7 +7,7 @@ require_once 'type/GenericStacked.class.php';
7 7
8$obj = new Type_GenericStacked($CONFIG, $_GET); 8$obj = new Type_GenericStacked($CONFIG, $_GET);
9$obj->data_sources = array('value'); 9$obj->data_sources = array('value');
10$obj->ds_names = array('value' => 'Value'); 10$obj->legend = array('value' => 'Value');
11$obj->colors = array('value' => '0000f0'); 11$obj->colors = array('value' => '0000f0');
12$obj->rrd_format = '%6.1lf'; 12$obj->rrd_format = '%6.1lf';
13 13