python初級者です。
以下のBokehのステップグラフ(階段グラフ)のtooltipが表示されません。
最後の4行目~最後の2行目までのp.stepp.lineにするとtooltipが表示されます。
ステップグラフは、tooltipが表示されないものなのでしょうか?

bokeh v1.0.2です

ご指導よろしくお願いいたします。

import pandas as pd
from datetime import datetime as dt

from bokeh.plotting import figure, output_file, show, reset_output
from bokeh.plotting import ColumnDataSource
from bokeh.models import HoverTool

# 出力設定
reset_output()

#ツールチップ
output_file("graph.html")
hover_tool = HoverTool(
    tooltips=[
        ("(時刻,工程)", "(@x{%F %R}, $y)"),
    ],
    formatters={
        'x': 'datetime',
    },
    mode='mouse'
)

p = figure(tools=[hover_tool], plot_width=600, plot_height=600,x_axis_location="above" ,x_axis_type = "datetime",x_axis_label="時刻", y_axis_label="工程")

x_dtlist1 = [dt(2019,2,1,8,15,00),dt(2019,2,1,8,30,00),dt(2019,2,1,8,35,00),dt(2019,2,1,8,40,00),dt(2019,2,1,8,45,00)]
x_dtlist2 = [dt(2019,2,1,9,15,00),dt(2019,2,1,9,30,00),dt(2019,2,1,9,35,00),dt(2019,2,1,9,40,00),dt(2019,2,1,9,45,00)]
x_dtlist3 = [dt(2019,2,1,10,15,00),dt(2019,2,1,10,30,00),dt(2019,2,1,10,35,00),dt(2019,2,1,10,40,00),dt(2019,2,1,10,45,00)]
y_dtlist = [0,1,1,2,2]
p.step(x_dtlist1, y_dtlist)
p.step(x_dtlist2, y_dtlist)
p.step(x_dtlist3, y_dtlist)
show(p)