I'm looking at grasping the meaning of Google Visualisations series property. So for example whats the meaning of the series statement below with regards to the dummy data I placed after the text.
series: {2: {type: "line"}}
Using the data below does the above mean plot a line graph using data in the final column.
Dummy Datatable:
data.addRow(["Set 1", 900, 450, 50]);
data.addRow(["Set 2", 700, 550, 40]);
data.addRow(["Set 3", 500, 350, 30]);
data.addRow(["Set 4", 300, 100, 20]);
data.addRow(["Set 5", 150, 50, 10]);
OR
Using the above datatable does series: {1: {type: "line"}} mean plot a line graph using column two data?