aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/js/RrdGraph.js
diff options
context:
space:
mode:
authorManuel Luis SanmartĂ­n Rozada2015-04-04 00:47:16 +0200
committerPim van den Berg2015-06-22 11:04:06 +0200
commit87ddc9f759c8786ed3589419aaf3711019bd6cbf (patch)
tree6d0962b46da437ebec88ef481da987ea13b7e938 /js/RrdGraph.js
parentjsrrdgraph: Fix tabs and spaces (diff)
downloadapt-panopticon_cgp-87ddc9f759c8786ed3589419aaf3711019bd6cbf.zip
apt-panopticon_cgp-87ddc9f759c8786ed3589419aaf3711019bd6cbf.tar.gz
apt-panopticon_cgp-87ddc9f759c8786ed3589419aaf3711019bd6cbf.tar.bz2
apt-panopticon_cgp-87ddc9f759c8786ed3589419aaf3711019bd6cbf.tar.xz
jsrrdgraph: Fix TICK
Diffstat (limited to 'js/RrdGraph.js')
-rw-r--r--js/RrdGraph.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/RrdGraph.js b/js/RrdGraph.js
index 1a9cc9f..d2dbdb4 100644
--- a/js/RrdGraph.js
+++ b/js/RrdGraph.js
@@ -325,6 +325,8 @@ RrdGraphDesc.prototype.tick = function (graph, vname, color, fraction, legend)
325 this.col = color; 325 this.col = color;
326 if (fraction !== undefined) 326 if (fraction !== undefined)
327 this.yrule = fraction; 327 this.yrule = fraction;
328 else
329 this.yrule = 0.1;
328 if (legend === undefined) this.legend = ''; 330 if (legend === undefined) this.legend = '';
329 else if (legend.length === 0) this.legend = ''; 331 else if (legend.length === 0) this.legend = '';
330 else this.legend = ' '+legend; 332 else this.legend = ' '+legend;