I am looking to modify the options for my line chart. However, when I define the options as shown below, the first series setting gets ignored and only the second series property is applied.
var options = {
title: 'Temperature Graph ( sampling every 30 minutes )',
titleTextStyle: { fontSize: 16 },
legend: { position: 'in' },
series: {
0: { pointSize : 2, lineWidth: 2 },
1: { pointSize : 0, lineWidth: 1 }
}
};