当我悬停"苹果"时,如何让其他线条变得半透明?在传奇?
答案 0 :(得分:0)
对于Chart.JS 2.x:
示例:https://jsfiddle.net/rn7ube7v/4/
我们需要在2 dataset.borderColor
之间切换,其中1种颜色的alpha 0.2
(可见20%)和1
(100%可见)。
例如:使用HSL颜色为每个数据集循环彩虹,我们将常规颜色存储为dataset.accentColor
和dataset.accentFadedColor
,以便它不会聚焦。
function steppedHslColor(ratio, alpha) {
return "hsla(" + 360 * ratio + ', 60%, 55%, ' + alpha + ')';
}
function colorizeDatasets(datasets) {
for (var i = 0; i < datasets.length; i++) {
var dataset = datasets[i]
dataset.accentColor = steppedHslColor(i / datasets.length, 1)
dataset.accentFadedColor = steppedHslColor(i / datasets.length, 0.2)
dataset.backgroundColor = dataset.accentColor
dataset.borderColor = dataset.accentColor
}
return datasets
}
colorizeDatasets(datasets)
然后我们挂钩options.legend.onHover(mouseEvent, legendItem)
以应用正确的颜色。
var myChart = new Chart(ctx, {
type: 'line',
data: {
datasets: datasets,
},
options: {
legend: {
onHover: function(e, legendItem) {
if (myChart.hoveringLegendIndex != legendItem.datasetIndex) {
myChart.hoveringLegendIndex = legendItem.datasetIndex
for (var i = 0; i < myChart.data.datasets.length; i++) {
var dataset = myChart.data.datasets[i]
if (i == legendItem.datasetIndex) {
dataset.borderColor = dataset.accentColor
} else {
dataset.borderColor = dataset.accentFadedColor
}
}
myChart.update()
}
}
},
},
});
遗憾的是没有config.legend.onLeave
回调,因此我们需要挂钩canvas.onmousemove
并查看它是否离开了图例区域。
myChart.hoveringLegendIndex = -1
myChart.canvas.addEventListener('mousemove', function(e) {
if (myChart.hoveringLegendIndex >= 0) {
if (e.layerX < myChart.legend.left || myChart.legend.right < e.layerX
|| e.layerY < myChart.legend.top || myChart.legend.bottom < e.layerY
) {
myChart.hoveringLegendIndex = -1
for (var i = 0; i < myChart.data.datasets.length; i++) {
var dataset = myChart.data.datasets[i]
dataset.borderColor = dataset.accentColor
}
myChart.update()
}
}
})