google visualization chart, size in percentage

后端 未结 5 1532
我在风中等你
我在风中等你 2021-01-07 19:29

How do you set the size of a google chart in percentage : I have this in the html:

5条回答
  •  有刺的猬
    2021-01-07 19:45

    $(window).resize(function(){
        var container = document.getElementById("chart_div").firstChild.firstChild;
        container.style.width = "100%";
    
        chart.draw(data, options);
    });
    

提交回复
热议问题