Bokeh 创建的图表中的 X 和 Y 值问题

Issues in X and Y values in graphs created by Bokeh

我的 X 轴和 Y 轴都以 2.000e+7 和 1.5040e+7 的形式出现。 X 轴是日期时间,如 2017-08-02 10:20:37.260 和 Y 轴应该有像 5000 这样的整数值。

我该如何纠正?enter image description here

plot = figure(plot_width=800, plot_height=450, tools=[hover, TOOLS], 
       title='Order/Execution Snapshot with Price Levels',
       x_axis_label='Date', y_axis_label='Price',x_axis_type="datetime")

X 轴类型作为日期时间有助于解决问题。