您可以定义一个自定义函数来格式化日期坐标,并在 tickformat
属性中使用它。以下是一个示例函数,它会检查上级单位是否与前一个坐标相同,并相应地省略。
function formatDateTick(value, index, values) {const d = new Date(value);const prevValue = values[index - 1];const prevDate = new Date(prevValue);const currentUnit = d.getUTCMonth();const prevUnit = prevDate.getUTCMonth();let formatString = "";if (currentUnit !== prevUnit) {formatString += "%b "; // month abbreviation}formatString += "%d"; // day of monthif (currentUnit !== prevUnit) {formatString += ", %Y"; // year}return Plotly.d3.timeFormat(formatString)(d);
}
然后将 tickformat
属性设置为该函数的名称即可:
layout = {xaxis: {tickformat: "formatDateTick"}
};
请注意,为了使这个自定义函数能够在 tickformat
属性中使用,必须将它定义在 window
对象中(如果您正在使用浏览器)。