我想为我的图表添加跟随鼠标的垂直线
我在网上寻找其他解决方案,但找不到任何有效的方法。
new Chart(document.getElementById("mainChart"), {
type: 'line',
data: {
labels: [0,1,2],
datasets: [{
data: [10,100,1000],
label: "",
borderColor: "#3e95cd",
backgroundColor: "#2d6c96",
fill: true
}
]
},
options: {
title: {
display: true,
text: 'Grin Profitablity'
},
legend: {
display: false
}
}
});
如果您可以编辑我的代码或告诉我需要添加的内容,那将非常好:D
“标签”和“数据”只是临时值,待图表完全正常工作后,便会更改。