如何在d3 v4中使用d3.legend.color()

时间:2017-09-11 06:07:08

标签: javascript d3.js

我有这样的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的正确代码是什么?我在网上搜索但我什么都没得到。

0 个答案:

没有答案