From da1786eda289a8dd1c8b1011249e16f4b8bed51b Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Tue, 24 Mar 2020 14:01:41 +0000 Subject: Update column numbers There is an untitled column full of 0, update the graphs to skip it until the data gets fixed. --- autobuild/index.html | 4 ++-- 1 file 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', -- cgit v1.2.1