これは、d3.js を使用して作成したグラフです。各セット (3 つのバー) の中央のバーが月の名前と一致するように、バーをティック値の中心に配置したいと考えています。これをエレガントに行う方法はありますか?データセットまたはチャート関数についてさらに情報が必要な場合はお知らせください。
役立つコード
this.container.selectAll('g.container')
.data(this.data)
.enter().append('g')
.attr('class', 'container')
.attr('transform', function(d, i){
console.log(d.dimension, this)
var x = self.margin.left + self.xScale(d.dimension.value);
var y = self.margin.top;
return 'translate('+ x + ',' + y +')'
});
this.bars = this.container.selectAll('g.container')
.selectAll('rect.bar')
.data(function(d){ return d; })
.enter()
.append('rect')
.attr('class', 'bar')
.attr('width', 3)
.attr('height', function(d){
console.log(d.y, d.key, this);
return availableHeight - self.yScale(d.y);
})
.attr('y', function(d){ return self.yScale(d.y); })
.attr('x', function(d, i){ return i * 5 });