gpt4 book ai didi

javascript - 如何在d3.js时间刻度中指定tickValues?

转载 作者:行者123 更新时间:2023-11-30 16:15:26 28 4
gpt4 key购买 nike

我使用的是 d3,在我的图表中,我的刻度是 UTC 格式的时间刻度。

xScale  = d3.time.scale.utc().range([0,  chartWidth]);

我需要动态指定刻度并动态更改域以避免刻度标签困惑。

我正在根据域计算刻度,并将刻度设置为最接近的 5 倍数。但是,我注意到一个问题,有时更改域时刻度位置不一致。见下图:

enter image description here

在一些论坛中,我发现可以通过函数tickValues(d3.range(starting value, end value,interval))设置刻度值See this post by mbostock .

现在我不确定——我怎样才能在我的时间尺度上做同样的事情?如果我想计算我自己的 xAxis 刻度值(使用 UTC 时间刻度),我该怎么做?

谢谢。

最佳答案

您想强制每 N 分钟计时一次吗?或 N [时间单位]?

您可以使用:

var startDate = new Date(2016, 0, 1, 2, 0, 0),
endDate = new Date(2016, 0, 1, 4, 0, 0),
millisecondsBetweenTicks = 300000; //<-- 5 minutes

var x = d3.time.scale.utc()
.domain([startDate, endDate])
.range([0, width]);

var xAxis = d3.svg.axis()
.scale(x)
.tickValues(d3.range(startDate, endDate, millisecondsBetweenTicks )
.map(function(d){ return new Date(d) }) //<-- remap to dates
);

完整示例:

<!DOCTYPE html>
<meta charset="utf-8">
<style>

.axis text {
font: 10px sans-serif;
}

.axis line,
.axis path {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}

</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>

var margin = {top: 250, right: 40, bottom: 250, left: 40},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom,
startDate = new Date(2016, 0, 1, 2, 0, 0),
endDate = new Date(2016, 0, 1, 4, 0, 0);

var x = d3.time.scale.utc()
.domain([startDate, endDate])
.range([0, width]);

var xAxis = d3.svg.axis()
.scale(x)
.tickValues(d3.range(startDate, endDate, 300000)
.map(function(d){ return new Date(d) })
);

var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");

svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.selectAll("text")
.attr("y", 0)
.attr("x", 9)
.attr("dy", ".35em")
.attr("transform", "rotate(90)")
.style("text-anchor", "start");

</script>

关于javascript - 如何在d3.js时间刻度中指定tickValues?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35590817/

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