我有以下一行:
我尝试使用曲线函数平滑线条:
JS:
const line = d3
.line()
.curve(d3.curveMonotoneY)
.x(d => x(d[0]))
.y(d => y(d[1]));
CSS:
.line {
stroke-width: 1px;
fill: none;
// shape-rendering: optimizeSpeed;
stroke-linejoin: round;
}
但无论我尝试使用什么类型的曲线,这条线似乎都没有改变。我想念一下吗?