如何使用ChartJS向下钻取图表? [已关闭]

问题描述 投票:0回答:1

令我非常惊讶的是,我几乎没有找到有关此主题的信息。

我有一个 ChartJS 饼图,我想在单击饼图的一部分后深入查看。

你会怎么做?

javascript jquery chart.js pie-chart drilldown
1个回答
10
投票

我已经用这个很棒的答案解决了我的问题:

Chart.js 中饼图上的点击事件

代码:

    $(document).ready(function() {
      var canvas = document.getElementById("myChart");
      var ctx = canvas.getContext("2d");
      var myNewChart = new Chart(ctx, {
         type: 'pie',
         data: data
      });

      canvas.onclick = function(evt) {
      var activePoints = myNewChart.getElementsAtEvent(evt);
      if (activePoints[0]) {
         var chartData = activePoints[0]['_chart'].config.data;
         var idx = activePoints[0]['_index'];

         var label = chartData.labels[idx];
         var value = chartData.datasets[0].data[idx];
         var color = chartData.datasets[0].backgroundColor[idx]; //Or any other data you wish to take from the clicked slice

         alert(label + ' ' + value + ' ' + color); //Or any other function you want to execute. I sent the data to the server, and used the response i got from the server to create a new chart in a Bootstrap modal.
       }
     };
  });

效果非常好。我没有提醒信息,而是使用 AJAX 将其发送到服务器,并在引导模式中显示新图表。

© www.soinside.com 2019 - 2024. All rights reserved.