diff options
Diffstat (limited to 'autobuild')
-rw-r--r-- | autobuild/index.html | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/autobuild/index.html b/autobuild/index.html index d3a13a9..86847b0 100644 --- a/autobuild/index.html +++ b/autobuild/index.html @@ -24,7 +24,7 @@ }); var resultsView = new google.visualization.DataView(d); - resultsView.hideColumns([8,9]); + resultsView.setColumns([0,1,2,3,4,5,6,7]); var rg = new google.visualization.AreaChart(document.getElementById('results_graph_div')); rg.draw(resultsView, { title : 'Build results', @@ -34,6 +34,18 @@ chartArea: {width: '87.5%'}, pointSize: 4, }); + + var evolutionView = new google.visualization.DataView(d); + evolutionView.setColumns([0,10,11,12]); + var eg = new google.visualization.AreaChart(document.getElementById('evolution_graph_div')); + eg.draw(evolutionView, { + title : 'Evolution', + width: 900, + height: 200, + legend: {position: 'bottom'}, + chartArea: {width: '87.5%'}, + pointSize: 4, + }); } </script> </head> @@ -43,5 +55,6 @@ <div id='table_div'></div> <div id='success_graph_div'></div> <div id='results_graph_div'></div> + <div id='evolution_graph_div'></div> </body> </html> |