我想将垂直视图中的图例更改为水平视图。
voicecalldata
.width(400)
.height(190)
.x(d3.scale.ordinal())
.xUnits(dc.units.ordinal)
.brushOn(true)
.dimension(voicecalldataDimension)
.group(Incoming1,"Incoming")
.group(Outgoing1,"Outgoing")
.legend(dc.legend().x(5).y(165).itemHeight(8).gap(3))
在这里,voicecalldata是我的
compositechart
名称。上面的图例必须更改为以下格式。
有人请帮帮我。
最佳答案
采用
.legend(dc.legend().horizontal(true).x(5).y(165).itemHeight(8).gap(3))
阅读更多信息:
http://dc-js.github.io/dc.js/docs/html/dc.legend.html#horizontal__anchor