mirror of
https://github.com/ohwgiles/laminar.git
synced 2024-10-27 20:34:20 +00:00
resolves #10: make total build graph semi-transparent
This commit is contained in:
parent
7d47bc4b89
commit
7a7c5bc5aa
@ -172,14 +172,14 @@ const Home = function() {
|
|||||||
}(),
|
}(),
|
||||||
datasets: [{
|
datasets: [{
|
||||||
label: "Successful Builds",
|
label: "Successful Builds",
|
||||||
fillColor: "darkseagreen",
|
fillColor: "rgba(143,188,143,0.65)", //darkseagreen at 0.65
|
||||||
strokeColor: "forestgreen",
|
strokeColor: "forestgreen",
|
||||||
data: msg.buildsPerDay.map(function(e) {
|
data: msg.buildsPerDay.map(function(e) {
|
||||||
return e.success || 0;
|
return e.success || 0;
|
||||||
})
|
})
|
||||||
}, {
|
}, {
|
||||||
label: "Failed Bulids",
|
label: "Failed Bulids",
|
||||||
fillColor: "darksalmon",
|
fillColor: "rgba(233,150,122,0.65)", //darksalmon at 0.65
|
||||||
strokeColor: "crimson",
|
strokeColor: "crimson",
|
||||||
data: msg.buildsPerDay.map(function(e) {
|
data: msg.buildsPerDay.map(function(e) {
|
||||||
return e.failed || 0;
|
return e.failed || 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user