我正在使用谷歌图表。定位让我望而却步。我没有在文档中找到该部分。我只想在 div 中创建一个谷歌图表,左上角位于 div 的 (x, y) 中。帮助控制尺寸的额外积分。
<html>
<head>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Year', 'Sales', 'Expenses'],
['2004', 1000, 400],
['2005', 1170, 460],
['2006', 660, 1120],
['2007', 1030, 540]
]);
var options = {
title: 'Company Performance',
hAxis: {title: 'Year', titleTextStyle: {color: 'red'}}
};
var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id="chart_div" style="width: 900px; height: 500px;"></div>
</body>
</html>
如果我使用像萤火虫这样的工具在“运行时”中查看 html,我会看到:
rect x="161" y="96" width="579" height="309"
但我没有选择任何这些值。