gpt4 book ai didi

d3.js:在轴上的刻度之间对齐文本标签

转载 作者:行者123 更新时间:2023-12-03 07:33:14 26 4
gpt4 key购买 nike

有没有一种简单的方法可以在刻度之间对齐文本标签?

这是我的时间轴,刻度上方有标签:
enter image description here

我想像这样放置这些标签:
enter image description here

最佳答案

我最终得到了 Lars Kotthoff's advices 之一。

每次我调用(axis)时,我也会调整文本标签。
这是简化的代码:

function renderAxis() {
axisContainer
.transition().duration(300)
.call(axis) // draw the standart d3 axis
.call(adjustTextLabels); // adjusts text labels on the axis
}

function adjustTextLabels(selection) {
selection.selectAll('.major text')
.attr('transform', 'translate(' + daysToPixels(1) / 2 + ',0)');
}

// calculate the width of the days in the timeScale
function daysToPixels(days, timeScale) {
var d1 = new Date();
timeScale || (timeScale = Global.timeScale);
return timeScale(d3.time.day.offset(d1, days)) - timeScale(d1);
}

更新:
顺便说一句,这是一个日历演示,我最终得到的是:http://bl.ocks.org/oluckyman/6199145

enter image description here

关于d3.js:在轴上的刻度之间对齐文本标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17544546/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com