如何将 .scss 文件中声明的变量读取到 d3 图表中
How to read variables declared in .scss files in to d3 charts
我在 .scss 文件中声明了多个变量我想将相同的变量读入我的 d3 图表
例如:
$body-color: #424656;
d3.select(…)
.append("path")
.attr("d", line(data))
.attr("stroke", "black")
例如在上面的代码中,我想根据我的 .sccs 变量更改描边颜色
试试这个
.attr("填充", var(--body-color)
我在 .scss 文件中声明了多个变量我想将相同的变量读入我的 d3 图表 例如:
$body-color: #424656;
d3.select(…)
.append("path")
.attr("d", line(data))
.attr("stroke", "black")
例如在上面的代码中,我想根据我的 .sccs 变量更改描边颜色
试试这个 .attr("填充", var(--body-color)