ui-chart icon indicating copy to clipboard operation
ui-chart copied to clipboard

chartOptions $watch not working

Open smilovanovic opened this issue 11 years ago • 1 comments

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)

smilovanovic avatar Jun 23 '14 10:06 smilovanovic

scope.$watch(attrs.chartOptions, function () { renderChart(); }, true);

smilovanovic avatar Jun 23 '14 10:06 smilovanovic