散景时间序列图上的斜率

Slope on bokeh time series plot

散景时间序列图中日期时间的内部表示是什么,例如,在 https://docs.bokeh.org/en/latest/docs/gallery/candlestick.html 这个烛台图表中,如何绘制 45 度角的斜率? (在计算斜率/梯度时,我应该在日期时间轴上使用基于秒的纪元还是微秒?nano?)

看起来散景在内部使用 ms 来绘制时间序列图。所以,

g = 1 / (24 * 3600 * 1e3)
Slope(gradient=g, y_intercept=66 - g * (df['date'][0].timestamp() * 1e3)

应该绘制 45 度斜线。