Python tag orientation tkinter

Is there any way to make tkinter label widget vertical? Something like that

sample label

or is it simply impossible? I have already looked around and cannot find how to do this. By the way, I tried orient='vertical' , but the label widget does not seem to support it.

+7
python label tkinter
source share
2 answers

No, there is no way to display rotated text in the tkinter tag widget.

+2
source share

You can achieve vertical display without turning the text, using the wraplength parameter, which is set to 1, will force the following char to a new line:

  Label( master_frame, text="Vertical Label", wraplength=1 ).grid( row=0, column=0 ) 
+4
source share

All Articles