I need to be able to update the chart title and size when drilled down.
The drilldown function runs but the following code does nothing at all.
// This gets called correctly, alert gets hit but does not change the title
drilldown: function() {
alert('drilldown');
$scope.highchartsNG.title.text = 'New Title Test (drilldown)';
}
// This gets called at start and changes the title
func: function (chart) {
//setup some logic for the chart
//alert('func');
$scope.highchartsNG.title.text = 'New Title Test (func)';
}
jsfiddle located at the following http://jsfiddle.net/vgmhgs0e/2/. The actual drilldown does not work in this example but I have it working, I think that's because it doesn't have the code from this thread: Highcharts-ng with drilldown