bokeh を使用する場合、図のタイトル フォント サイズを設定するにはどうすればよいですか?
私は試しました(ipythonノートブックで):
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()
text_font_size、label_text_font、title_font_size などを試しました。ドキュメントのどこにこの情報がありますか?