Google chart redraw/scale on window resize

前端 未结 9 1325
甜味超标
甜味超标 2020-12-07 19:50

How do I redraw/rescale a google linechart on window resize?

9条回答
  •  猫巷女王i
    2020-12-07 20:26

    The original code by Google simply does this at the end:

    var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
    chart.draw(data, options);
    

    Changing it with a little javascript you can scale it when the window resizes:

    function resize () {
        var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
        chart.draw(data, options);
    }
    
    window.onload = resize;
    window.onresize = resize;
    

提交回复
热议问题