I am trying to plot stock data. X - axis has date values and Y - axis has a numeric value. A & B are two data frames. I am plotting multiple lines on the same plot using the below:
from bokeh.plotting import figure, show
p = figure(title="X", x_axis_label='Date', y_axis_label='MonthlyAvgPrice',x_axis_type="datetime", plot_width=1500)
p.line(A["Date"], A["Close"], legend_label="A", line_width=2, line_color="red")
p.line(B["Date"], B["Close"], legend_label="B", line_width=2)
show(p)
The chart is coming up fine. But I want to show tooltip values over hover. In the documentation I cant find a way to do that when there are more than one lines