hi,
how do I left justify all the radiobutton displayed?
For example, I have 5 radio button with different text, each on different row using:
rb[i].grid(row=i, column=0)
Instead of displaying it left justified, its all centered.
I tried using anchor='w', but result the same.
I tried also to count the text length of each radiobutton and filling the text with spaces on the right so it all has the same length, which 'almost' work, but it seems that each character have different width.
If the radiobutton can't be left justified, what font can I use that have the same width for all character?
Thanks