I need some help with a problem I am encountering. I created a chart and a custom tooltip, whenever the user clicks on the tooltip, it should call the $scope function.
tooltip: {
pointFormatter: function() {
return $compile(angular.element("<p style='color:red' ng-click='handleClick()'>Click here</p>"))(scope);
}
}
I created a jsfiddle for it.
Thanks!