gpt4 book ai didi

d3.js - 自定义 d3 月或年刻度格式

转载 作者:行者123 更新时间:2023-12-03 05:27:06 24 4
gpt4 key购买 nike

所以我在d3中制作了一个图表并使用了默认的x轴格式,

d3.axisBottom(x)

输出以下图表:

months and years

如何手动创建和自定义此格式?特别是,我想使用简短的月份名称,例如“Oct”,这样“October”就不会掩盖下一年的标签。

最佳答案

使用 tickFormat 设置 x 轴刻度的格式。在您的情况下, .tickFormat(d3.timeFormat("%b")) 将返回短月份名称(但它会使年份消失)。

这是演示:

var svg = d3.select("body")
.append("svg")
.attr("width", 500)
.attr("height", 100)

var xScale = d3.scaleTime()
.domain([new Date("2014-01-01"), new Date("2016-01-01")])
.range([0, 450]);

var xAxis = d3.axisBottom(xScale)
.tickFormat(d3.timeFormat("%b"));

svg.append("g")
.call(xAxis);
<script src="https://d3js.org/d3.v4.min.js"></script>

要保留月/年默认功能,您需要创建自己的自定义格式。

var xAxis = d3.axisBottom(xScale)
.tickFormat(function(date){
if (d3.timeYear(date) < date) {
return d3.timeFormat('%b')(date);
} else {
return d3.timeFormat('%Y')(date);
}
});

查看演示:

var svg = d3.select("body")
.append("svg")
.attr("width", 500)
.attr("height", 100)

var xScale = d3.scaleTime()
.domain([new Date("2014-01-01"), new Date("2016-01-01")])
.range([0, 500]);

var xAxis = d3.axisBottom(xScale)
.tickFormat(function(date){
if (d3.timeYear(date) < date) {
return d3.timeFormat('%b')(date);
} else {
return d3.timeFormat('%Y')(date);
}
});

svg.append("g")
.attr("class", "x axis")
.call(xAxis);

d3.selectAll(".ticks");
<script src="https://d3js.org/d3.v4.min.js"></script>

关于d3.js - 自定义 d3 月或年刻度格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40173533/

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