我正在尝试使用 Google Visualizations 编写条形图。
https://developers.google.com/chart/interactive/docs/gallery/barchart
条形图是动态生成并多次更改的。
Google Visualizations 似乎无法检测我通过 jQuery 动态附加的 div 元素的尺寸。因此,我想将条形图的尺寸硬编码到我输入 Google Visualizations 的选项中。
我怎么做?
我已经尝试过这些选项。
var options = {
title: 'Comparing Kangeroos and Wallabies',
vAxis: {title: 'Factors', titleTextStyle: {color: 'red'}},
legend: 'bottom',
chartArea.width: '400px',
fontName: 'Arial Narrow'
};
然而,Chrome Web Developer 只是注意到“chartArea.width”中有一个意想不到的时期。