So what I want to achieve is something like this:
So I know this can be done in regular tkinter with indicatoron=0
but this does not work with ttk or themed tkinter. Does anyone know how I would be able to achieve this with what I currently have:
radiobutton1 = ttk.Radiobutton(labelFrameDegreesIncrement, text='1°', variable=varDegreeIncrement, value=1).grid(row=0, column=0)
Also sorry if this isn't the form questions are posted here. This is my first time posting a question.
Use the following
style options
to hide theindicator
:Use
style.map(...
to change thebackground=
color according to thestate
.STYLING OPTIONS
According to the reference: Some options are only available for specific themes.
default
classic
clam
alt
Tested with Python: 3.5 - 'TclVersion': 8.6 'TkVersion': 8.6