如何使用Angularjs创建highcharts地图?

时间:2015-01-20 09:25:44

标签: angularjs highcharts angularjs-directive highcharts-ng

我想使用Angularjs创建Highcharts地图,我该怎么做? 任何指令/库?

感谢

1 个答案:

答案 0 :(得分:1)

我没找到,但你可以轻松地自己创建一个指令。只需创建一个如下配置的directiv:

.directive('highmap',function($timeout){
    return{
        scope:{ },
        restrict: 'EAC',
        replace: true,
        transclude: true,
        template: '<div ng-transclude></div>',
        controller: function($scope, $compile, $attrs, $element){
        }
    }
})

在控制器内部,您可以处理所有地图配置内容。别忘了将render target设置为div的id。

我是怎么做的,遗憾的是我不允许分享它。