ui-chart
ui-chart copied to clipboard
chartOptions $watch not working
If you want to toggle series visibility(ng-model="options.series[0].show") $watch function is not triggering replot, you need third parameter to be set to true.
a.$watch(c.chartOptions,function(){d()},true)
scope.$watch(attrs.chartOptions, function () { renderChart(); }, true);