标签: python matplotlib axes
当我使用ax.set_xticklabels(['somethinghere']*10, rotation='-90')时,我得到如下结果:
ax.set_xticklabels(['somethinghere']*10, rotation='-90')
我想在保持字母水平的同时旋转单词。我的期望是这样的:
如何获得带有单词下移而不是旋转单词的x轴标签?
答案 0 :(得分:0)
也许不是最好的方式,但肯定有效
ax.set_xticklabels((['s\n''o\n''m\n''e\n''t\n''h\n''i\n''n\n''g\n' ])*10)