gpt4 book ai didi

javascript - d3js : time scaling and winter months

转载 作者:行者123 更新时间:2023-11-28 08:22:46 26 4
gpt4 key购买 nike

我正在 d3js 中绘制一个散点图,它隔离了冬季。有没有一种快速简便的方法来格式化 x 比例,以便我在 3 月到 12 月的图表中没有间隙?我希望 x 轴的范围是从 12 月 21 日到 3 月 21 日:

1901 example http://lmnts.lmnarchitects.com/wp-content/uploads/2014/04/2014-04-01-09_31_30-127.0.0.1_8020_Climate3_seattle-winter-temps.html.jpg

最佳答案

您可以将日期延长到一年,即使您不希望显示它,也可以将前一年 7 月之后的月份指定为第一学期的月份:

var data = [
{date: '2012/12/01', RH: 50, ...},
{date: '2012/12/02', RH: 55, ...},
...
{date: '2013/03/31', RH: 89, ...}
];

并使用d3.extent设置日期刻度的范围。轴应显示 12 月至 3 月之间的连续间隔。问候,

关于javascript - d3js : time scaling and winter months,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22792291/

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