diff options
author | Pascal Terjan <pterjan@mageia.org> | 2020-03-24 14:01:41 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2020-03-24 14:01:41 +0000 |
commit | da1786eda289a8dd1c8b1011249e16f4b8bed51b (patch) | |
tree | 70e3f17edd0a629dc9f02236584fc0be74217599 | |
parent | 02e0f4329243e9e5e9dd037375217829d332c160 (diff) | |
download | pkgsubmit-da1786eda289a8dd1c8b1011249e16f4b8bed51b.tar pkgsubmit-da1786eda289a8dd1c8b1011249e16f4b8bed51b.tar.gz pkgsubmit-da1786eda289a8dd1c8b1011249e16f4b8bed51b.tar.bz2 pkgsubmit-da1786eda289a8dd1c8b1011249e16f4b8bed51b.tar.xz pkgsubmit-da1786eda289a8dd1c8b1011249e16f4b8bed51b.zip |
Update column numbers
There is an untitled column full of 0, update the graphs to skip it
until the data gets fixed.
-rw-r--r-- | autobuild/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autobuild/index.html b/autobuild/index.html index d8001ad..e60034e 100644 --- a/autobuild/index.html +++ b/autobuild/index.html @@ -11,7 +11,7 @@ table.draw(d, {showRowNumber: false, allowHtml: true, page: 'enable'}); var successView = new google.visualization.DataView(d); - successView.setColumns([0,9]); + successView.setColumns([0,10]); var sg = new google.visualization.AreaChart(document.getElementById('success_graph_div')); sg.draw(successView, { title : 'Success Rate', @@ -39,7 +39,7 @@ }); var evolutionView = new google.visualization.DataView(d); - evolutionView.setColumns([0,12,10]); + evolutionView.setColumns([0,13,11]); var eg = new google.visualization.AreaChart(document.getElementById('evolution_graph_div')); eg.draw(evolutionView, { title : 'Failure count', |