我有一个来自这个谷歌图表的 JavaScript 函数
function drawVisualization() {
// Create and populate the data table.
var data = google.visualization.arrayToDataTable([
['Name', 'Manager', 'Tooltip'],
['Mike', null, 'The President'],
[{v: 'Jim', f: 'Jim<br/><font color="red"><i>Vice President<i></font>'}, 'Mike', null],
['Alice', 'Mike', 'wonderland'],
['Bob', 'Jim', 'Bob Sponge'],
['Carol', 'Bob', null]
]);
// Create and draw the visualization.
new google.visualization.OrgChart(document.getElementById('visualization')).
draw(data, {allowHtml: true});
}
我不明白如何填充在 JavaScript 中声明的数据数组变量。