轴标签字体样式不改变散景

时间:2019-09-01 01:37:42

标签: bokeh

我有一个数字p

p = bokeh.plotting.figure(
    width=300,
    height=250,
    x_axis_label='this is the x axis',
    y_axis_label="this is the y axis',
)

默认情况下,x和y轴标签为斜体字体样式。我想将其更改为常规样式。

但是,当我这样做时:

p.yaxis.axis_label_text_font_style = 'normal'

y轴字体样式保持斜体,并且没有收到错误消息。

我在这里想念什么?

我也尝试过

p.axis.axis_label_text_font_style = 'normal'

未指定轴,并且仍然没有变化。

0 个答案:

没有答案