My graph continuously calls the Controller to fetch recent data from the Database.
There are two lines on the graph, and I would like to display the names of each line (column) such as red=counts of something // brown=counts of something else.
On my other bar graph, there is a line information with color, and column names highlighted. How do I include that information?
Below are snippets of code related to my line graph:
o.data = new google.visualization.DataTable();
o.data.addColumn('string', 'time');
o.data.addColumn('number', o.name);
o.data.addColumn('number', o.name2);
o.data.addRow(['', 0, 0]);