From 4ef45f953ca9fa7ae7ef0eeed009cc966466abc0 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Wed, 2 Jan 2013 23:42:45 +0000 Subject: Add a graph with the evolution between runs --- autobuild/index.html | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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, + }); } @@ -43,5 +55,6 @@
+
-- cgit v1.2.1