1
0
Fork 0
This commit is contained in:
Heiko Kernbach 2014-02-22 15:38:27 +01:00
parent d7dc6ef6a8
commit 56991d0a77
5 changed files with 23 additions and 6 deletions

View File

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

View File

@ -352,6 +352,7 @@
.x(function(d) { return d.label })
.y(function(d) { return d.value })
//.margin({top: 30, right: 20, bottom: 50, left: 175})
.margin({left: 80})
.showValues(true)
.transitionDuration(350)
.showControls(false);

View File

@ -1,4 +1,9 @@
.dashboardDistribution svg {
width: 300px;
height: 300px;
.dashboardDistribution {
width: 270px;
float: left;
}
.dashboardDistribution svg {
width: 250px;
height: 220px;
}

View File

@ -3,3 +3,7 @@
height: 300px;
border: 1px solid black;
}
.dashboardChart {
float: left;
}

View File

@ -863,6 +863,13 @@ select.filterSelect {
height: 300px;
border: 1px solid black; }
.dashboardChart {
float: left; }
.dashboardDistribution {
width: 270px;
float: left; }
.dashboardDistribution svg {
width: 300px;
height: 300px; }
width: 250px;
height: 220px; }