summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-01-05 15:48:54 +0000
committerTed Trask <ttrask01@yahoo.com>2009-01-05 15:48:54 +0000
commitb3122047c5b39ce2b01274bb4b14bfdb8d89f157 (patch)
tree01f0228efc0b1a6d41842b3b74eea5ad430627f4
parent40b90f1a43d4e976528e3f08772673d96165f0b3 (diff)
downloadacf-alpine-baselayout-b3122047c5b39ce2b01274bb4b14bfdb8d89f157.tar.bz2
acf-alpine-baselayout-b3122047c5b39ce2b01274bb4b14bfdb8d89f157.tar.xz
Modified health network stats to move legend and make options into two columns.
git-svn-id: svn://svn.alpinelinux.org/acf/alpine-baselayout/trunk@1664 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r--health-networkstats-html.lsp11
1 files changed, 7 insertions, 4 deletions
diff --git a/health-networkstats-html.lsp b/health-networkstats-html.lsp
index e00fe1c..a19f71d 100644
--- a/health-networkstats-html.lsp
+++ b/health-networkstats-html.lsp
@@ -38,7 +38,7 @@
});
if (timestamp == 0 && lastdata != null) timestamp = lastdata.timestamp*1000;
$.plot(
- $("#chart"), data, {legend:{position:"ne", backgroundOpacity:0}, xaxis:{mode:"time", timeformat:"%H:%M:%S", min:timestamp, max:timestamp+duration}, yaxis:{min:0}});
+ $("#chart"), data, {legend:{container: $("#legend")}, xaxis:{mode:"time", timeformat:"%H:%M:%S", min:timestamp, max:timestamp+duration}, yaxis:{min:0}});
}
function Update(){
$.ajaxSetup({cache:false});
@@ -100,15 +100,18 @@
<H1>Network Statistics</H1>
Network traffic in bytes/second
-<div id="chart" style="WIDTH: 600px; HEIGHT: 300px"></div>
+<div id="chart" style="FLOAT: left; WIDTH: 600px; HEIGHT: 300px"></div>
+<div id="legend" style="FLOAT: left; margin-left: 10px; WIDTH: 50px"></div>
<DL>
<DT>Display Options</DT>
+<DD><TABLE>
<% for intf,val in pairs(view.value) do
local ipaddr = ""
if val.ipaddr then ipaddr = " ("..val.ipaddr..")" end %>
- <DD><input type="checkbox" name=<%= intf.."RX" %> checked="checked"><%= intf.." RX"..ipaddr %></input></DD>
- <DD><input type="checkbox" name=<%= intf.."TX" %> checked="checked"><%= intf.." TX"..ipaddr %></input></DD>
+ <TR><TD><input type="checkbox" name=<%= intf.."RX" %> checked="checked"><%= intf.." RX"..ipaddr %></input></TD>
+ <TD><input type="checkbox" name=<%= intf.."TX" %> checked="checked"><%= intf.." TX"..ipaddr %></input></TD></TR>
<% end %>
+</TABLE></DD>
<DT>Start / Stop</DT>
<DD>
<input TYPE="button" ID="Start" VALUE="Start">