2016-10-28 100 views
1

當我調整瀏覽器的大小時,Google圖表在我的圖表中創建錯誤css google-visualization-errors-8谷歌可視化錯誤,同時調整大小屏幕

enter image description here

什麼是這個錯誤的原因是什麼?

注意:當屏幕大小調整時,我正在繪製圖形。

$(window).resize(function(){ 
    drawChart(); 
}); 
+0

,或者如果圖表正確顯示,除了誤差,聽取錯誤事件,並簡單地刪除它... – WhiteHat

+0

@WhiteHat我通過刪除錯誤,當它發生時解決。使用事件監聽器 –

回答

1

我通過消除使用錯誤修正了這個

var chartC = new google.visualization.PieChart(document.getElementById('monthlySalesChart')); 
    var monthlySalesData = google.visualization.arrayToDataTable($scope.dataForMonth); 
    chartC.draw(monthlySalesData, dounutOptions); 

    // listening the error and removing 

    new google.visualization.events.addListener(chartC, 'error', function (googleError) { 
     google.visualization.errors.removeError(googleError.id); 
    }); 

這可能有助於使用抖大小調整可以幫助別人:)