簡體   English   中英

如何添加鏈接到谷歌餅圖切片

[英]how to add links to google pie chart slices

這是我一直在工作的代碼,我需要通過單擊切片重定向到另一個頁面。

<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函數中,添加它。 (AFTER chart.draw)

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

查看“選擇”中包含的內容,看看是否有足夠的信息來設置瀏覽器重定向到的位置。

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM