我有这样的d3 v3代码:
var legendLinear = d3.legend.color()
.shapeWidth(Math.round(svgW/8))
.shapeHeight(containerW/8/3/2)
.orient('horizontal')
.scale(ordinal);
svg.call(legendLinear);
但是在d3 v4中我得到错误d3.legend未定义
v4的正确代码是什么?我在网上搜索但我什么都没得到。