Adding watermark to chart

You need a layout container, assuming you already created another figure with a plot (fig1)

from bokeh.plotting import figure, output_file, show
from bokeh.layouts import column

output_file("MyReport.html", title = 'My Report')   
output_col = column([html_WM_logo(), fig1])
show(output_col)