首頁  >  問答  >  主體

angular.js - angular封裝echart自適應問題

自己封裝了一個echarts

angular.module('docms')
.directive('eChart', function () {
        var eChartDirective = {
            restrict:'EA',
            template:'<p></p>',
            replace:true,
            scope:{
                option:'='
            },
            link:function(scope,eles,attrs,ctrl){
                var chart = echarts.init(eles[0]);
                scope.$watch('option',function(newOption){
                    chart = echarts.init(eles[0]);
                    chart.setOption(newOption);
                },true);
                window.addEventListener('resize',function(){
                    chart.resize();
                })



            }
        }
        return eChartDirective;
    })
<p ng-class="{true:'col-sm-12',false:'col-sm-6'}[width]">
    <e-chart option = "option"></e-chart>
</p>   

原來父元素p只佔50%,後續由於ng-class調整至100%,
但是繪圖在50%時已經完成了,現在我只能實現視窗大小調整時的重繪,有沒有什麼辦法監控父元素寬度的變化,在變化時重繪cavans?

phpcn_u1582phpcn_u15822738 天前855

全部回覆(1)我來回復

  • 高洛峰

    高洛峰2017-05-15 17:13:11

    謝邀。

    這裡可以把導致p的class變化的那個變數傳給eChart組件。

    angular.module('docms')
    .directive('eChart', function () {
            var eChartDirective = {
                restrict:'EA',
                template:'<p></p>',
                replace:true,
                scope:{
                    option:'=',
                    forceRender:'='
                },
                link:function(scope,eles,attrs,ctrl){
                    var chart = echarts.init(eles[0]);
                    scope.$watch('option',function(newOption){
                        chart = echarts.init(eles[0]);
                        chart.setOption(newOption);
                    },true);
                    scope.$watch('forceRender',function(newOption){
                        chart.resize();
                    },true);
                    window.addEventListener('resize',function(){
                        chart.resize();
                    })
                }
            }
            return eChartDirective;
        })
    <p ng-class="{true:'col-sm-12',false:'col-sm-6'}[width]">
        <e-chart option="option" force-render="width"></e-chart>
    </p>   

    回覆
    0
  • 取消回覆