Disabling highcharts export button

by Sajeetharan Sinnathurai

HTML

<script src="http://code.jquery.com/jquery-2.1.3.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="https://code.angularjs.org/1.3.0/angular.js"></script>
<script src="https://rawgit.com/pablojim/highcharts-ng/0.0.7/src/highcharts-ng.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div ng-app="app">
    <group-chart></group-chart>    
<div>

JavaScript

var app = angular.module('app', ['highcharts-ng']);

app.directive('groupChart', function(){
    return {
        restrict: 'E',
        scope: {},
        template: '<highchart config="chartConfig"></highchart>',
        link: function(scope, element, attrs) {
            scope.chartConfig = {
                options: {
                    exporting: {
                        enabled: false
                    }
                }
            };
        }
    };
});