1
0
Fork 0

Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel

This commit is contained in:
Jan Steemann 2012-09-17 13:32:36 +02:00
commit 6fa5f0fdc1
2 changed files with 4 additions and 3 deletions

View File

@ -79,7 +79,7 @@ img.externalLink {
.placeholderBox, .placeholderBoxSettings { .placeholderBox, .placeholderBoxSettings {
margin-left: 7px; margin-left: 7px;
margin-right: 7px; margin-right: 20px;
margin-top: 7px; margin-top: 7px;
margin-bottom: 20px; margin-bottom: 20px;
font-size: 0.8em; font-size: 0.8em;

View File

@ -2531,6 +2531,7 @@ function drawConnections (placeholder, granularity) {
}, },
xaxis: { xaxis: {
mode: "time", mode: "time",
timeformat: "%h:%M",
twelveHourClock: false twelveHourClock: false
}, },
//crosshair: { mode: "x" }, //crosshair: { mode: "x" },
@ -2617,7 +2618,7 @@ function drawRequests (placeholder, granularity) {
arraySent.push([data.start[i]*1000,data.bytesSent.mean[i]]); arraySent.push([data.start[i]*1000,data.bytesSent.mean[i]]);
arrayReceived.push([data.start[i]*1000,data.bytesReceived.mean[i]]); arrayReceived.push([data.start[i]*1000,data.bytesReceived.mean[i]]);
} }
var stack = 0, bars = true, lines = true, steps = true; var stack = 0, bars = false, lines = false, steps = false;
var options = { var options = {
legend: { legend: {
show: true, show: true,
@ -2626,7 +2627,6 @@ function drawRequests (placeholder, granularity) {
backgroundOpacity: 0.4 backgroundOpacity: 0.4
}, },
series: { series: {
stack: stack,
lines: { show: true, lines: { show: true,
steps: false, steps: false,
fill: true, fill: true,
@ -2636,6 +2636,7 @@ function drawRequests (placeholder, granularity) {
}, },
xaxis: { xaxis: {
mode: "time", mode: "time",
timeformat: "%h:%M",
twelveHourClock: false twelveHourClock: false
}, },
//crosshair: { mode: "x" }, //crosshair: { mode: "x" },