d3.js 在D3js多行图表上的x标题上方添加空格

eqqqjvef  于 2022-11-12  发布在  其他
关注(0)|答案(1)|浏览(139)

我试图在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');
bkkx9g8r

bkkx9g8r1#

您可以通过将y:

const XCaption = svg.append('g')
        .attr('class', 'x axis')
        .attr('transform', `translate(0, ${height - margin})`)
        .call(xAxis)
        .append('text')
        .text('Sprints')
        .attr('x', (width/2) - 24)
        .attr('y', 30) // move your text down 5 more pixels
        .attr('transform', 'rotate(0)')
        .attr('fill', '#437495')
        .attr('font-size', '16px');

最后的小刻度通常是axis域的一部分。

.x.axis .domain { display: none; }

相关问题