我将柱形图复制到fiddle。在js小提琴上,图表不会加载。但是在我的页面上,错误Cannot read property 'bp' of undefined
出现在我的网页上(而不是在控制台上)。以下是我的代码。
HTML
<head>
<script src="https://www.google.com/jsapi" type="text/javascript"></script>
</head>
<body>
<div id="chart"></div>
<script>
google.load("visualization", "1", {
packages: ["corechart"]
});
google.setOnLoadCallback(
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Name', 'Numbers'],
['All', 67000],
['Paid to Date', 40000]
]);
// Create and draw the visualization.
new google.visualization.ColumnChart(document.getElementById('chart')).draw(
data, {
width: 350,
height: 200,
hAxis: { baselineColor: 'white'
},
vAxis: { baselineColor: 'white',
gridlines: { color: 'black',
count: 2
},
ticks: [0, 90000]
},
legend: { position: "none"
}
});
})
</script>
</body>
我希望找出js小提琴的错误并将该修复程序应用到我的应用程序将解决问题。所以问题就变成了,代码有什么问题?为什么我的柱形图应该在页面上弹出这个错误?