令我惊讶的是,我几乎没有找到有关该主题的信息。
我有一个ChartJS饼图,在单击饼图的一部分后,我想对其进行深入研究。
您将如何做?您是否建议使用Google图表或其他任何库?
谢谢
答案 0 :(得分:2)
我已经用这个很棒的答案解决了我的问题:
Click events on Pie Charts in 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将其发送到服务器,并以自举模式显示新图表。