gpt4 book ai didi

javascript - D3 可缩放 y 轴(以小时为单位)

转载 作者:行者123 更新时间:2023-11-29 22:08:36 32 4
gpt4 key购买 nike

我想弄清楚如何制作一个以小时为单位的可缩放 y 轴。我希望 y 轴的范围从早上 7 点到下午 5 点。我的 x 轴以天为单位。

目前,我有以小时为单位的 y 轴,但它只在 y 轴的顶部显示 12AM。我不确定从早上 7 点到下午 5 点去哪里。我的代码确实在两个轴上进行了缩放。

任何帮助将不胜感激:)

// Define the min and max date 
var mindate = new Date(2013,0,20), // TODO: clip date
maxdate = new Date(2013,0,25);

var margin = {top: 20, right: 20, bottom: 30, left: 40},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;

var x = d3.time.scale()
.domain([mindate, maxdate])
.range([0, width]);

var y = d3.time.scale()
.domain([mindate, maxdate])
.range([height, 0]);

var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom")
.ticks(d3.time.days, 1)
.tickFormat(d3.time.format("%A : %d")); // d is for testing

var yAxis = d3.svg.axis()
.scale(y)
.orient("left")
.ticks(d3.time.days, 12)
.tickFormat(d3.time.format("%I %p")); // For 12 hour time

var zoom = d3.behavior.zoom()
// .x(x)
.y(y)
.scaleExtent([1, 10])
.on("zoom", zoomed);

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 + ")")
.call(zoom);

svg.append("rect")
.attr("width", width)
.attr("height", height);

svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);

svg.append("g")
.attr("class", "y axis")
.call(yAxis);

function zoomed() {
svg.select(".x.axis").call(xAxis);
svg.select(".y.axis").call(yAxis);

最佳答案

我不是 100% 确定这是否是您想要的,但我将您的问题解释为如何以 1 小时为步长在同一天从早上 7 点到下午 5 点创建一个比例。第一件事是为所需时间的 y 尺度创建一组日期,如下所示:

var ymindate = new Date(2013,0,20, 7),  // TODO: clip date 
ymaxdate = new Date(2013,0,20, 17);

下一步只需要对您的代码进行微小的更改。刻度设置为 d3.time.hours 而不是天,步长设置为 1 小时,如下所示。

var yAxis = d3.svg.axis()
.scale(y)
.orient("left")
.ticks(d3.time.hours, 1)
.tickFormat(d3.time.format("%I %p"));

如果您只想在多天显示上午 7 点和下午 5 点,则必须创建一组自定义的刻度并使用时间间隔

关于javascript - D3 可缩放 y 轴(以小时为单位),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19527407/

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