更改轴上文本的角度

时间:2014-12-11 16:35:30

标签: python python-2.7 xlsxwriter

是否可以在XlsxWriter中更改轴上文本的角度?
在Excel中,你会这样做:
格式轴>对齐>文字布局>自定义角度:-70

我认为VB宏看起来像这样:

ActiveChart.Axes(xlCategory).TickLabels.Orientation = -70  ' degrees

我在XlsxWriter docs中没有看到任何关于此事的内容。

1 个答案:

答案 0 :(得分:2)

我认为这种情况有set_x_axis(set_y_axis)方法。

chart.set_x_axis({'name_font': {'bold': True, 'italic': True}})

以下是link到文档中。