How do I set the title font size for a figure when using bokeh?
I tried (in ipython notebook):
import bokeh.plotting as bp
import numpy as np
bp.output_notebook()
x_points = np.random.rand(100)
y_points = np.random.rand(100)
bp.figure(title='My Title', x_axis_label='X axis', y_axis_label='Y axis', \
text_font_size='8pt')
bp.scatter(x_points, y_points)
bp.show()
I've tried text_font_size, label_text_font, title_font_size, etc. Where in the documentation is all of this information?