我正在使用dc.js绘制条形图,这是我使用的代码。但是,我的嘀嗒声不会出现在酒吧的中心。它们最后会出现。这就是我的代码的样子:
barChart5.width(600)
.height(250)
.margins({top: 10, right: 100, bottom: 20, left: 80})
.dimension(pfmValue)
.group(pfmValueGroupSum)
.valueAccessor(function (p) {return p.value.avgIndex;})
.transitionDuration(800)
.yAxisLabel($('metric').value)
.gap(200)
.x(d3.scale.ordinal().domain(["CORESITE", "MWEB"]))
.brushOn(false)
.title(function(d) { return d.key + ": " + d3.round(d.value.avgIndex,2); })
.elasticY(true)
.barPadding(0.5)
.centerBar(true)
.xUnits(dc.units.ordinal);
如何将它们带到条形图的中心,以及如何确保Y轴标签不重叠(此处它没有,但在其他一些图表中,它确实如此) )。