Add legends right under the line graphs.

This commit is contained in:
zohaib1020 2014-06-13 11:12:16 -07:00
parent 215627d408
commit 341f64a448

View File

@ -50,6 +50,7 @@ function drawLineChart(seriesTitles, data, elementId, unit) {
opts = {};
}
opts.vAxis = {title: unit};
opts.legend = {position: 'bottom'};
ac.draw(dataTable, window.chartOptions);
}