1

これは私が取り組んできたコードです。スライスをクリックして別のページにリダイレクトする必要があります。

<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>
4

1 に答える 1

3

Google ビジュアライゼーションを使用すると、クリック ハンドラーを設定できると思います。したがって、 drawChart 関数にこれを追加します。(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

于 2013-02-14T07:51:18.133 に答える