google visualization chart, size in percentage

后端 未结 5 1538
我在风中等你
我在风中等你 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:33

    By multiplying with appropriate factor to $(window).width() or $(window).height() in the chart options

    var options = {
            width: $(window).width(),
            height: $(window).height()*0.75
    };
    

提交回复
热议问题