我正在使用这个插件(Github),它使用谷歌图表(绘制饼图)。我想使用 Google api 中的 select 事件和 getSelection() 方法。例如,当用户单击元素时提醒元素的 id。如何让它发生?
问问题
1052 次
1 回答
1
对不起,伙计们)我不再需要这个插件了。使用 Google 的代码而不是使用那个 jQuery 插件要容易得多。
<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([
['Task', 'Hours per Day'],
['Work', 11],
['Eat', 2],
['Commute', 2],
['Watch TV', 2],
['Sleep', 7]
]);
var options = {
title: 'My Daily Activities'
};
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id="chart_div" style="width: 900px; height: 500px;"></div>
</body>
</html>
于 2013-02-27T14:51:28.137 回答