mirror of
https://github.com/status-im/burnchart.git
synced 2025-02-20 22:28:10 +00:00
nice working line chart by rickshaw
This commit is contained in:
parent
6062503c3b
commit
23d0cb4001
227
public/css/rickshaw.css
Normal file
227
public/css/rickshaw.css
Normal file
@ -0,0 +1,227 @@
|
||||
.rickshaw_graph .detail {
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
z-index: 2;
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
bottom: 0;
|
||||
width: 1px;
|
||||
transition: opacity 0.25s linear;
|
||||
-moz-transition: opacity 0.25s linear;
|
||||
-o-transition: opacity 0.25s linear;
|
||||
-webkit-transition: opacity 0.25s linear;
|
||||
}
|
||||
.rickshaw_graph .detail.inactive {
|
||||
opacity: 0;
|
||||
}
|
||||
.rickshaw_graph .detail .item.active {
|
||||
opacity: 1;
|
||||
}
|
||||
.rickshaw_graph .detail .x_label {
|
||||
font-family: Arial, sans-serif;
|
||||
border-radius: 3px;
|
||||
padding: 6px;
|
||||
opacity: 0.5;
|
||||
border: 1px solid #e0e0e0;
|
||||
font-size: 12px;
|
||||
position: absolute;
|
||||
background: white;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.rickshaw_graph .detail .item {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
border-radius: 3px;
|
||||
padding: 0.25em;
|
||||
font-size: 12px;
|
||||
font-family: Arial, sans-serif;
|
||||
opacity: 0;
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
color: white;
|
||||
border: 1px solid rgba(0, 0, 0, 0.4);
|
||||
margin-left: 1em;
|
||||
margin-top: -1em;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.rickshaw_graph .detail .item.active {
|
||||
opacity: 1;
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
.rickshaw_graph .detail .item:before {
|
||||
content: "\25c2";
|
||||
position: absolute;
|
||||
left: -0.5em;
|
||||
color: rgba(0, 0, 0, 0.7);
|
||||
width: 0;
|
||||
}
|
||||
.rickshaw_graph .detail .dot {
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
margin-left: -4px;
|
||||
margin-top: -3px;
|
||||
border-radius: 5px;
|
||||
position: absolute;
|
||||
box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
|
||||
background: white;
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
display: none;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
.rickshaw_graph .detail .dot.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* graph */
|
||||
|
||||
.rickshaw_graph {
|
||||
position: relative;
|
||||
}
|
||||
.rickshaw_graph svg {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* ticks */
|
||||
|
||||
.rickshaw_graph .x_tick {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 0px;
|
||||
border-left: 1px dotted rgba(0, 0, 0, 0.2);
|
||||
pointer-events: none;
|
||||
}
|
||||
.rickshaw_graph .x_tick .title {
|
||||
position: absolute;
|
||||
font-size: 12px;
|
||||
font-family: Arial, sans-serif;
|
||||
opacity: 0.5;
|
||||
white-space: nowrap;
|
||||
margin-left: 3px;
|
||||
bottom: 1px;
|
||||
}
|
||||
|
||||
/* annotations */
|
||||
|
||||
.rickshaw_annotation_timeline {
|
||||
height: 1px;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
margin-top: 10px;
|
||||
position: relative;
|
||||
}
|
||||
.rickshaw_annotation_timeline .annotation {
|
||||
position: absolute;
|
||||
height: 6px;
|
||||
width: 6px;
|
||||
margin-left: -2px;
|
||||
top: -3px;
|
||||
border-radius: 5px;
|
||||
background-color: rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
.rickshaw_graph .annotation_line {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: -6px;
|
||||
width: 0px;
|
||||
border-left: 2px solid rgba(0, 0, 0, 0.3);
|
||||
display: none;
|
||||
}
|
||||
.rickshaw_graph .annotation_line.active {
|
||||
display: block;
|
||||
}
|
||||
.rickshaw_annotation_timeline .annotation .content {
|
||||
background: white;
|
||||
color: black;
|
||||
opacity: 0.9;
|
||||
padding: 5px 5px;
|
||||
box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
|
||||
border-radius: 3px;
|
||||
position: relative;
|
||||
z-index: 20;
|
||||
font-size: 12px;
|
||||
padding: 6px 8px 8px;
|
||||
top: 18px;
|
||||
left: -11px;
|
||||
width: 160px;
|
||||
display: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.rickshaw_annotation_timeline .annotation .content:before {
|
||||
content: "\25b2";
|
||||
position: absolute;
|
||||
top: -11px;
|
||||
color: white;
|
||||
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
.rickshaw_annotation_timeline .annotation.active,
|
||||
.rickshaw_annotation_timeline .annotation:hover {
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
cursor: none;
|
||||
}
|
||||
.rickshaw_annotation_timeline .annotation .content:hover {
|
||||
z-index: 50;
|
||||
}
|
||||
.rickshaw_annotation_timeline .annotation.active .content {
|
||||
display: block;
|
||||
}
|
||||
.rickshaw_annotation_timeline .annotation:hover .content {
|
||||
display: block;
|
||||
z-index: 50;
|
||||
}
|
||||
.rickshaw_graph .y_axis {
|
||||
fill: none;
|
||||
}
|
||||
.rickshaw_graph .y_ticks .tick {
|
||||
stroke: rgba(0, 0, 0, 0.16);
|
||||
stroke-width: 2px;
|
||||
shape-rendering: crisp-edges;
|
||||
pointer-events: none;
|
||||
}
|
||||
.rickshaw_graph .y_grid .tick {
|
||||
z-index: -1;
|
||||
stroke: rgba(0, 0, 0, 0.20);
|
||||
stroke-width: 1px;
|
||||
stroke-dasharray: 1 1;
|
||||
}
|
||||
.rickshaw_graph .y_grid path {
|
||||
fill: none;
|
||||
stroke: none;
|
||||
}
|
||||
.rickshaw_graph .y_ticks path {
|
||||
fill: none;
|
||||
stroke: #808080;
|
||||
}
|
||||
.rickshaw_graph .y_ticks text {
|
||||
opacity: 0.5;
|
||||
font-size: 12px;
|
||||
pointer-events: none;
|
||||
}
|
||||
.rickshaw_graph .x_tick.glow .title,
|
||||
.rickshaw_graph .y_ticks.glow text {
|
||||
fill: black;
|
||||
color: black;
|
||||
text-shadow:
|
||||
-1px 1px 0 rgba(255, 255, 255, 0.1),
|
||||
1px -1px 0 rgba(255, 255, 255, 0.1),
|
||||
1px 1px 0 rgba(255, 255, 255, 0.1),
|
||||
0px 1px 0 rgba(255, 255, 255, 0.1),
|
||||
0px -1px 0 rgba(255, 255, 255, 0.1),
|
||||
1px 0px 0 rgba(255, 255, 255, 0.1),
|
||||
-1px 0px 0 rgba(255, 255, 255, 0.1),
|
||||
-1px -1px 0 rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.rickshaw_graph .x_tick.inverse .title,
|
||||
.rickshaw_graph .y_ticks.inverse text {
|
||||
fill: white;
|
||||
color: white;
|
||||
text-shadow:
|
||||
-1px 1px 0 rgba(0, 0, 0, 0.8),
|
||||
1px -1px 0 rgba(0, 0, 0, 0.8),
|
||||
1px 1px 0 rgba(0, 0, 0, 0.8),
|
||||
0px 1px 0 rgba(0, 0, 0, 0.8),
|
||||
0px -1px 0 rgba(0, 0, 0, 0.8),
|
||||
1px 0px 0 rgba(0, 0, 0, 0.8),
|
||||
-1px 0px 0 rgba(0, 0, 0, 0.8),
|
||||
-1px -1px 0 rgba(0, 0, 0, 0.8);
|
||||
}
|
@ -18,8 +18,6 @@
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
body{
|
||||
background-color:rgb(255,255,255);
|
||||
background-image:url("../img/colbg.jpg");
|
||||
@ -147,14 +145,6 @@ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0956ae', end
|
||||
text-shadow:none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*--------- SIDEBAR STYLES -------------*/
|
||||
|
||||
.sideBar{
|
||||
padding-top:20px;
|
||||
}
|
||||
@ -170,7 +160,7 @@ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0956ae', end
|
||||
margin-bottom:2px;
|
||||
|
||||
}
|
||||
.sideBar ul >li figure{
|
||||
.sideBar ul > li figure{
|
||||
margin:0;
|
||||
padding:6px 14px 6px 14px;
|
||||
opacity:0.7;
|
||||
@ -204,7 +194,7 @@ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0956ae', end
|
||||
}
|
||||
|
||||
|
||||
.sideBar ul > li >figure .badge{
|
||||
.sideBar ul > li > figure .badge{
|
||||
top:-2px;
|
||||
position:relative;
|
||||
font-family:"OpenSansRegular";
|
||||
@ -262,8 +252,6 @@ height:30px;
|
||||
margin-right:4px;
|
||||
}
|
||||
|
||||
|
||||
/* ------ OTHER STYLES--------------- */
|
||||
.borBox{
|
||||
-webkit-box-sizing:border-box;
|
||||
-ms-box-sizing:border-box;
|
||||
@ -342,192 +330,4 @@ hr{
|
||||
background-color:rgba(225,225,225,0.55);
|
||||
border-radius:2px;
|
||||
border:1px rgb(210,210,210) solid;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ------- THE COOLBOX --------------*/
|
||||
.coolbox{
|
||||
width:100%;
|
||||
min-height:100%;
|
||||
height:auto;
|
||||
-webkit-box-sizing:border-box;
|
||||
-ms-box-sizing:border-box;
|
||||
-moz-box-sizing:border-box;
|
||||
-o-box-sizing:border-box;
|
||||
box-sizing:border-box;
|
||||
}
|
||||
.coolbox .cooltitle{
|
||||
width:100%;
|
||||
height:35px;
|
||||
padding-top:6px;
|
||||
font-size:18px;
|
||||
-webkit-border-radius:0px;
|
||||
-moz-border-radius:0px;
|
||||
border-radius:0px;
|
||||
-webkit-box-sizing:border-box;
|
||||
-ms-box-sizing:border-box;
|
||||
-moz-box-sizing:border-box;
|
||||
-o-box-sizing:border-box;
|
||||
box-sizing:border-box;
|
||||
}
|
||||
.coolbox .cooltitle i{
|
||||
margin-top:4px;
|
||||
}
|
||||
.coolbox .coolcontent{
|
||||
width:100%;
|
||||
min-height:150px;
|
||||
height:auto;
|
||||
padding:20px 10px;
|
||||
background-color:rgb(255,255,255);
|
||||
border:1px rgb(225,225,225) solid;
|
||||
border-top:none;
|
||||
-webkit-box-sizing:border-box;
|
||||
-ms-box-sizing:border-box;
|
||||
-moz-box-sizing:border-box;
|
||||
-o-box-sizing:border-box;
|
||||
box-sizing:border-box;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
ul.horizontal li{
|
||||
display:inline-block;
|
||||
margin-right:5px;
|
||||
margin-bottom:5px;
|
||||
}
|
||||
|
||||
|
||||
.control-group label{
|
||||
float:left;
|
||||
display:block;
|
||||
text-align:left;
|
||||
width:auto;
|
||||
padding-top:7px;
|
||||
margin-right:12px;
|
||||
}
|
||||
.control-group .control{
|
||||
float:left;
|
||||
display:block;
|
||||
}
|
||||
|
||||
/*
|
||||
::-webkit-scrollbar{width:7px;}
|
||||
::-webkit-scrollbar-track{background-color:rgba(0,0,0,0.0);}
|
||||
::-webkit-scrollbar-track:hover{background-color:rgba(0,0,0,0.05);}
|
||||
::-webkit-scrollbar-thumb{background-color:rgba(0,175,219,0.4);}
|
||||
::-webkit-scrollbar-thumb:hover{background-color:rgba(0,175,219,0.7);}
|
||||
*/
|
||||
|
||||
|
||||
.green{
|
||||
background-color:rgba(0,175,219,1);
|
||||
height:14px;
|
||||
width:14px;
|
||||
}
|
||||
.mask{
|
||||
-webkit-mask-image:url('../img/glyphicons-halflings.png');
|
||||
-webkit-mask-position:0 0;
|
||||
-webkit-mask-repeat:no-repeat;
|
||||
}
|
||||
|
||||
|
||||
|
||||
input.sharp{
|
||||
-webkit-border-radius:0px;
|
||||
-moz-border-radius:0px;
|
||||
border-radius:0px;
|
||||
}
|
||||
|
||||
.btn.sharp{
|
||||
-webkit-border-radius:0px;
|
||||
-moz-border-radius:0px;
|
||||
border-radius:0px;
|
||||
}
|
||||
|
||||
|
||||
/* ------ MESSAGES ----------*/
|
||||
|
||||
.message-item .message-people .pic{
|
||||
width:48px;
|
||||
height:48px;
|
||||
background-image:url("http://placehold.it/48x48");
|
||||
display:block;
|
||||
float:left;
|
||||
margin-right:8px;
|
||||
}
|
||||
.message-item .message-people .info{
|
||||
display:block;
|
||||
float:left;
|
||||
margin-top:-3px;
|
||||
}
|
||||
.message-item .message-people .info .name{
|
||||
color:#333;
|
||||
}
|
||||
|
||||
.message-item:nth-child(2n){
|
||||
background-color:rgb(248,248,248);
|
||||
}
|
||||
.message-item{
|
||||
padding:10px 10px 0px 10px;
|
||||
}
|
||||
.message-item:hover{
|
||||
background-color:rgb(244,244,244);
|
||||
}
|
||||
|
||||
/* ------- TASKS --------*/
|
||||
.tasks li a i{
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*----- charts -----*/
|
||||
|
||||
#mouseDragChart,#timeChart,#bubbleChart,#pieChart,#barChart{
|
||||
height:400px;
|
||||
width:600px;
|
||||
margin:auto;
|
||||
}
|
||||
|
||||
|
||||
.form.sharp input{
|
||||
-webkit-border-radius:0px;
|
||||
-moz-border-radius:0px;
|
||||
border-radius:0px;
|
||||
}
|
||||
.form.sharp .btn{
|
||||
-webkit-border-radius:0px;
|
||||
-moz-border-radius:0px;
|
||||
border-radius:0px;
|
||||
}
|
||||
.form.vertical input{
|
||||
display:block;
|
||||
clear:both;
|
||||
|
||||
}
|
||||
.form.vertical h6{
|
||||
margin-top:-5px;
|
||||
margin-bottom:6px;
|
||||
}
|
||||
.form.vertical .btn,.form.vertical a{
|
||||
display:block;
|
||||
clear:both;
|
||||
margin-top:0;
|
||||
margin-bottom:20px;
|
||||
}
|
||||
.form.vertical .span4{
|
||||
margin-left:0;
|
||||
}
|
||||
|
||||
button.sp{
|
||||
margin-bottom:20px;
|
||||
|
||||
clear:both;
|
||||
}
|
||||
|
||||
.noFM{
|
||||
margin-left:0 !important;
|
||||
padding-left:0;
|
||||
}
|
1
public/js/d3.layout.min.js
vendored
Normal file
1
public/js/d3.layout.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
public/js/d3.min.js
vendored
Normal file
2
public/js/d3.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
public/js/rickshaw.min.js
vendored
Normal file
2
public/js/rickshaw.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -7,7 +7,12 @@
|
||||
<title>Burndown App</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="css/rickshaw.css">
|
||||
<link rel="stylesheet" type="text/css" href="css/style.css">
|
||||
|
||||
<script src="js/d3.min.js"></script>
|
||||
<script src="js/d3.layout.min.js"></script>
|
||||
<script src="js/rickshaw.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<header class="navbar blue blue2 navbar-fixed-top">
|
||||
@ -30,12 +35,12 @@
|
||||
<ul>
|
||||
<li class="active">
|
||||
<figure>
|
||||
<i class="icon-signal"></i> Burndown Chart <span class="badge badge-warning">0.7</span>
|
||||
<a href="/burndown"><i class="icon-signal"></i> Burndown Chart</a>
|
||||
</figure>
|
||||
</li>
|
||||
<li>
|
||||
<figure>
|
||||
<i class="icon-tasks"></i> Issues <span class="badge badge-info">?</span>
|
||||
<a href="/issues"><i class="icon-tasks"></i> Issues</a>
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
@ -51,11 +56,54 @@
|
||||
|
||||
<div class="row-fluid">
|
||||
<div class="span12">
|
||||
dd
|
||||
<div id="chart"></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
<script>
|
||||
(function() {
|
||||
var ideal = [], actual = [], i = 0;
|
||||
<% for day, data of @days: %>
|
||||
ideal.push({ 'x': <%= day / 1000 %>, 'y': <%= data['ideal'] %> });
|
||||
actual.push({ 'x': <%= day / 1000 %>, 'y': <%= data['actual'] %> });
|
||||
i++;
|
||||
<% end %>
|
||||
|
||||
// The line graph.
|
||||
var graph = new Rickshaw.Graph({
|
||||
element: document.querySelector("#chart"),
|
||||
height: 600,
|
||||
renderer: 'line',
|
||||
series: [{
|
||||
data: ideal,
|
||||
color: '#75ABC5',
|
||||
name: 'Ideal'
|
||||
}, {
|
||||
data: actual,
|
||||
color: '#F89406',
|
||||
name: 'Actual'
|
||||
}]
|
||||
});
|
||||
|
||||
graph.render();
|
||||
|
||||
// Onhover.
|
||||
var hoverDetail = new Rickshaw.Graph.HoverDetail({
|
||||
graph: graph,
|
||||
xFormatter: function(d) { return new Date(d * 1000).toUTCString() },
|
||||
yFormatter: function(y) { return Math.round(y) + " points left" }
|
||||
});
|
||||
|
||||
// Axes.
|
||||
var axes = new Rickshaw.Graph.Axis.Time({
|
||||
graph: graph
|
||||
});
|
||||
axes.render();
|
||||
})();
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -30,12 +30,12 @@
|
||||
<ul>
|
||||
<li>
|
||||
<figure>
|
||||
<i class="icon-signal"></i> Burndown Chart <span class="badge badge-warning">0.7</span>
|
||||
<a href="/burndown"><i class="icon-signal"></i> Burndown Chart</a>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="active">
|
||||
<figure>
|
||||
<i class="icon-tasks"></i> Issues <span class="badge badge-info"><%= @issues.length %></span>
|
||||
<a href="/issues"><i class="icon-tasks"></i> Issues</a>
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
@ -51,7 +51,7 @@
|
||||
|
||||
<div class="row-fluid">
|
||||
<div class="span12">
|
||||
<table class="table table-bordered">
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
@ -67,7 +67,7 @@
|
||||
<% for issue in @issues: %>
|
||||
<tr>
|
||||
<td><%= issue.number %></td>
|
||||
<td><%= issue.title %></td>
|
||||
<td><strong><%= issue.title %></strong></td>
|
||||
<td><%= issue.created_at %></td>
|
||||
<td><%= issue.updated_at %></td>
|
||||
<td><%= issue.user.login %></td>
|
||||
|
Loading…
x
Reference in New Issue
Block a user