散景栏的xaxis.major_label_orientation

时间:2016-09-02 18:05:35

标签: python bokeh

在常规(低级)绘图中,可以设置标签方向,如下所示:

p.xaxis.major_label_orientation = pi/4

http://bokeh.pydata.org/en/0.9.3/docs/user_guide/styling.html#tick-label-orientation

我想在bokeh.charts.Bar中将x轴标签方向设置为“水平”,但无法找到执行此操作的方法。

Bokeh 0.9.3。

1 个答案:

答案 0 :(得分:1)

bokeh.charts API在2017年已弃用并已删除,此时不应用于任何内容。

从那时起,Bokeh对支持良好的bokeh.plotting API中的分类和条形图的支持变得非常好。现在可以以标准方式在条形图上旋转轴标签:

from math import pi
from bokeh.plotting import figure, show

types = list("ABCDE")
values = [10, 20, 50, 25, 35]

p = figure(x_range=types, plot_height=250)
p.vbar(x=types, top=values, width=0.9)

p.xaxis.major_label_orientation = pi/4   # standard styling code

show(p)

enter image description here

您可以在“用户指南”的Handling Categorical Data部分中找到更多信息和示例。