From 341f64a4482cb7c2acf042b279d804f42e4a1968 Mon Sep 17 00:00:00 2001 From: zohaib1020 Date: Fri, 13 Jun 2014 11:12:16 -0700 Subject: [PATCH] Add legends right under the line graphs. --- pages/static/containers_js.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/static/containers_js.go b/pages/static/containers_js.go index 83e1d028..6bbc6e2e 100644 --- a/pages/static/containers_js.go +++ b/pages/static/containers_js.go @@ -50,6 +50,7 @@ function drawLineChart(seriesTitles, data, elementId, unit) { opts = {}; } opts.vAxis = {title: unit}; + opts.legend = {position: 'bottom'}; ac.draw(dataTable, window.chartOptions); }