【发布时间】:2021-01-29 07:09:13
【问题描述】:
我正在使用散点图。将鼠标悬停在某个点上时,表示该点颜色的框未填充
我需要用线条的颜色来填充它,而不仅仅是颜色的边框。
这是我的数据集:
this.ScatterChart.data.datasets.push({
label: this.label,
data: this.Axiscoordinates,
fill: false,
lineTension: 0.1,
borderColor: SetColor,
color: SetColor,
backGroundColor: SetColor,
borderWidth: 1,
yAxisID: this.yAxisUnit,
showLine: true
});
【问题讨论】: