我试图在D3js多行图表的xCaption和x轴标签之间添加空格,但无法做到。另外,我如何才能去掉最后一个x标签(5后面的那个)。
const XCaption = svg.append('g')
.attr('class', 'x axis')
.attr('transform', `translate(0, ${height - margin})`)
.call(xAxis)
.append('text')
.attr('x', (width/2) - 24)
.attr('y', 25)
.attr('transform', 'rotate(0)')
.attr('fill', '#437495')
.attr('font-size', '16px');
1条答案
按热度按时间bkkx9g8r1#
您可以通过将y:
最后的小刻度通常是axis域的一部分。