javascript - 如何添加指向谷歌饼图切片的链接

标签 javascript

这是我一直在使用的代码,我需要通过单击切片重定向到另一个页面。

<script type='text/javascript' src='https://www.google.com/jsapi'></script>
<script type='text/javascript'>

  // Load the Visualization API and the piechart package.
  google.load('visualization', '1.0', {'packages':['corechart']});

  // Set a callback to run when the Google Visualization API is loaded.
  google.setOnLoadCallback(drawChart);

  // Callback that creates and populates a data table,
  // instantiates the pie chart, passes in the data and
  // draws it.
  function drawChart() {

    // Create the data table.
    var data = new google.visualization.DataTable();
    data.addColumn('string', 'Topping');    
    data.addColumn('number', 'Slices');
    data.addRows([
      ['Cleaning Completed', $co1],
  ['Denied At Client Place', $co2],
  ['Denied', $co3],
  ['Postponed', $co4],
  ['Careless Driver', $co5],
  ['Cleaning Started', $co6],
  ['Emptyspace', $co22],
  ['Assigned to Vehicle', $co23],
  ['Select', $co24],
  ['Call Not Picked', $co25],
  ['Asked to Call Back', $co26],
    ]);


       // Instantiate and draw our chart, passing in some options.
            var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
       chart.draw(data, options);
   }
       </script>

最佳答案

我相信 Google 可视化允许您设置点击处理程序。所以在你的 drawChart 函数中,添加这个。 (图表绘制后)

google.visualization.events.addListener(chart, 'select', function() {
    var selection = chart.getSelection();
    console.log(selection);  
});

查看“选择”中包含的内容,看看是否有足够的信息来设置浏览器应重定向到的位置。

更多信息:https://developers.google.com/chart/interactive/docs/reference#addlistener

关于javascript - 如何添加指向谷歌饼图切片的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14870025/

相关文章:

java - 此函数调用中的参数无法理解

javascript - 背景图像大小调整

javascript - chrome.browserAction.onClicked.addListener 不工作

javascript - 获取模拟 : GLOBAL is not defined

javascript - 如何在 Angular Material 自动完成的末尾有一个链接?

javascript - 将连续的 ","合并为单个 ","并在一个 RegExp 中删除前导和尾随 ","

javascript - 文件上传表单不起作用

javascript - 相当于 Chrome 中的 onbeforescriptexecute

javascript - Object.values 未创建 "proper"数组

Javascript按键按下时仅在按住按键时触发一次