1
0
Fork 0

http db group

This commit is contained in:
Heiko Kernbach 2014-02-21 23:18:29 +01:00
parent f50d1c8fda
commit 026ce33eec
5 changed files with 22 additions and 2 deletions

View File

@ -0,0 +1,5 @@
<script id="dashboardHttpGroup.ejs" type="text/template">
<div id="dashboardHttpGroup"></div>
</script>

View File

@ -283,9 +283,11 @@
template: templateEngine.createTemplate("dashboardView.ejs"),
httpTemplate: templateEngine.createTemplate("dashboardChart.ejs"),
httpTemplate: templateEngine.createTemplate("dashboardHttpGroup.ejs"),
groupTemplate: templateEngine.createTemplate("dashboardGroup.ejs"),
renderHttpGroup: function() {
$('.contentDiv').append(this.httpTemplate.render());
},
render: function() {
var self = this;
@ -296,6 +298,7 @@
this.renderPieCharts();
//this.renderLineCharts();
this.renderHttpGroup();
console.log(this.series);
}

View File

@ -0,0 +1,5 @@
#dashboardHttpGroup {
width: 100%;
height: 300px;
border: 1px solid black;
}

View File

@ -750,3 +750,8 @@ select.filterSelect {
max-width: 160px;
float: left;
margin-right: 3px; }
#dashboardHttpGroup {
width: 100%;
height: 300px;
border: 1px solid black; }

View File

@ -20,3 +20,5 @@
@import "tooltips";
// dbSelection
@import "dbSelection";
// dashboard http group
@import "dashboardHttpGroup";