私はこのトピックに関する情報をほとんど見つけられなかったことに非常に驚きました。
パイのスライスをクリックした後にドリルダウンしたいChartJS円グラフがあります。
どうしますか代わりに、Googleグラフや他のライブラリを使用することをお勧めしますか?
ありがとうございました
私はこの素晴らしい答えを使用して問題を解決しました:
コード:
$(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を使用してサーバーに送信し、bootstrap modal。