mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
This commit is contained in:
commit
6fa5f0fdc1
|
@ -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;
|
||||||
|
|
|
@ -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" },
|
||||||
|
|
Loading…
Reference in New Issue