Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望 X 轴的格式为 6/19 而不是 06/19。它似乎没有在其官方文档中提供这样做的方法: https ://github.com/mbostock/d3/wiki/Time-Formatting
有什么线索吗?谢谢?
请参阅有关填充的部分:
指示指令的 % 符号可以紧跟一个填充修饰符: 0- 零填充 _- 空格填充 -- 禁用填充
指示指令的 % 符号可以紧跟一个填充修饰符:
0
_
-
例如,"%-m/%-d"将禁用月份和日期的填充,为 6 月 1 日提供“6/1”,而不是"%m/%d"“06/01”。
"%-m/%-d"
"%m/%d"