我有一个定义如下的行图:
rowChart
.width(768)
.height(350)
.dimension(typeDim,"typeDim")
.group(countPerType,"countPerType")
.label(function (d) {return ""})
.ordering(function(d) { return d.countPerType })
.cap(30)
我希望此图的图例通过函数来动态显示,但不确定是否可行。