Skip to content Skip to sidebar Skip to footer

Change Angle Of Text On Axis

Is it possible to change the angle of the text on an axis in XlsxWriter? In Excel, you would do this: Format Axis > Alignment > Text Layout > Custom Angle: -70 And I think

Solution 1:

There is set_x_axis (set_y_axis) method for such cases i think.

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

Here is link into docs.

Post a Comment for "Change Angle Of Text On Axis"