diff options
Diffstat (limited to 'autobuild/index.html')
-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', |