我想禁用chart.js蜘蛛图表图例点击,因为当我点击图例时,数据系列会隐藏相关的值集,如下图所示。
我的要求是我不想禁用数据集。我试过了preventDefault();在图表上单击但它不起作用。
我的代码示例附在下面。请检查..
<!doctype html>
<html>
<head>
<title>Radar Chart</title>
<script src="../dist/Chart.bundle.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<body>
<div style="width:75%">
<canvas id="canvas"></canvas>
</div>
<script>
var randomScalingFactor = function() {
return Math.round(Math.random() * 100);
};
var randomColorFactor = function() {
return Math.round(Math.random() * 255);
};
var randomColor = function(opacity) {
return 'rgba(' + randomColorFactor() + ',' + randomColorFactor() + ',' + randomColorFactor() + ',' + (opacity || '.3') + ')';
};
var config = {
type: 'radar',
data: {
labels: ["Eating", "Drinking", "Sleeping", "Designing", "Coding", "Cycling", "Running"],
datasets: [{
label: "My First dataset",
backgroundColor: "rgba(0,0,0,0.5)",
pointBackgroundColor: "rgba(220,220,220,1)",
data: [randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor()]
}, {
label: "My Second dataset",
backgroundColor: "rgba(0,120,0,0.5)",
pointBackgroundColor: "rgba(151,187,205,1)",
hoverPointBackgroundColor: "#fff",
pointHighlightStroke: "rgba(151,187,205,1)",
data: [randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor()]
},]
},
options: {
legend: {
position: 'top',
onClick: (e) => e.stopPropagation()
},
title: {
display: true,
text: ''
},
scale: {
reverse: false,
gridLines: {
color: ['black']
},
ticks: {
beginAtZero: true
}
}
}
};
window.onload = function() {
window.myRadar = new Chart(document.getElementById("canvas"), config);
};
</script>
</body>
</html>
答案 0 :(得分:36)
根据文档,有一个onClick
处理程序用于公开事件对象的图例。如果你stopPropagation
它会停止隐藏数据系列:
let chart = new Chart(elem.find('canvas')[0], {
type: 'line',
data: {
labels: [],
datasets: []
},
options: {
responsive: true,
maintainAspectRatio: false,
legend: {
onClick: (e) => e.stopPropagation()
}
}
});
以上是ES6,如果您未使用下面支持的浏览器,则旧ES5等效。
legend: {
onClick: function (e) {
e.stopPropagation();
}
}
Chartjs必须在legend.onClick
之后注册自己的点击事件,这就是为什么它会停止执行。
答案 1 :(得分:7)
要覆盖点击图例项目的默认行为,即在图表中显示/隐藏关联数据集,您可以使用以下选项(为了清晰起见,显示在options: {
legend: {
onClick: function(event, legendItem) {}
}
}
内):
legend.onClick
这是覆盖默认行为的方法,即通过提供具有相同参数的函数。根据您的要求,此函数应该有一个空体(因此,立即返回),因为单击图例项时绝对不会发生任何事情。在docs中查找res.socket.parser.incoming.headers
。虽然它目前只出现在两种图表类型下,但此选项应适用于所有图表类型。
答案 2 :(得分:6)
此外,您可以使用null
或评估false
的任何值来禁用所有图例上的点击事件。
options: {
legend: {
onClick: null
}
}
注意:忽略onClick
点击事件,方法是使用Chart.js中的以下代码(https://github.com/chartjs/Chart.js/blob/6bea15e7cf89003e3a5945a20cf1d2cc5096728e/src/plugins/plugin.legend.js#L481)
答案 3 :(得分:0)
您需要添加属性 legendItemClick
来覆盖默认操作。对于饼图来说很好用
legendItemClick: function(e){
console.log("Clicked an item with text: " + e.text);
e.preventDefault();
}
https://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/chart/events/legenditemclick