Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道 Google Charts API 是否提供调整 Chart 元素大小的选项?或者有什么解决方法吗?
根据您的评论 - 您可以通过利用's方法来增加此答案中的解决方案:jQueryresize
jQuery
resize
$('#your_element_id').resize(function() { var chart = new google.visualization.LineChart(document.getElementById('chart_div')); chart.draw(data, options); }
我假设上一个问题中的答案是有效的,但它被接受了,所以很可能是:)