I'm seeking guidance on how to utilize Angular watch with an array of objects.
Here is an example array $scope.chartSeries containing objects like this:
[{"location": {values}, "id":"serie-1", "meter":{values}, "name": "seriename", "data":[{1,2,4,5,7,4,6}]}]
These objects are used to create a linechart using highcharts.
I am trying to implement a watch on this array so that I can detect any changes to its values along with the index and the changed value itself.
I've explored various watch options but none seem to cater to my requirements. Any suggestions?