Python Forum
tkinter - Make circle for radio button bigger
Thread Rating:
  • 2 Vote(s) - 3.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
tkinter - Make circle for radio button bigger
#1
Running Python 3.6.  Using tkinter for GUI.

How can I make the circle for a radio button bigger?  I'm referring to the circle that the user clicks.  I can use padx and pady to put more space on the sides and above/below a radio button but that does not make the circle bigger.

On my 15 inch, 1920x1080 laptop screen, the circle is rather small and requires careful mouse cursor control to tick the small circle.  I want to make the circle twice the default diameter.

Here's some sample code in case it is necessary to answer my question:  

# ===== Right Frame and its contents =====
rightFrame = Frame(root, width=200, height = 600)
rightFrame.grid(row=0, column=1, padx=10, pady=2)

var = IntVar()

R2 = Radiobutton(rightFrame, text="0.2", font=(None, 16), variable=var, value=2, command=sel, padx=40).pack( anchor = W )
(There are 9 radio buttons but did not list them all since they are similar.)
Reply


Messages In This Thread
tkinter - Make circle for radio button bigger - by Raptor88 - Mar-07-2017, 01:22 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  how to open a popup window in tkinter with entry,label and button lunacy90 1 902 Sep-01-2023, 12:07 AM
Last Post: lunacy90
  Tkinter button images not showing up lunacy90 7 1,619 Aug-31-2023, 06:39 PM
Last Post: deanhystad
Bug tkinter.TclError: bad window path name "!button" V1ber 2 806 Aug-14-2023, 02:46 PM
Last Post: V1ber
  Looping over radio buttons garynewport 8 2,309 Jan-10-2023, 10:56 AM
Last Post: garynewport
  make all text in Right to left alignment in tkinter widgets jalal0034 1 1,340 Sep-27-2022, 06:42 PM
Last Post: Larz60+
  How to plot seaborn heatmap on top of a background circle SriRajesh 0 1,426 Jul-09-2022, 04:00 AM
Last Post: SriRajesh
  drawing moving circle on line with python barrai 1 3,144 Feb-25-2022, 03:33 PM
Last Post: BashBedlam
  Making a plot with secondary y-axis bigger snkm 0 1,137 Feb-10-2022, 09:40 AM
Last Post: snkm
  Closing Threads and the chrome window it spawned from Tkinter close button law 0 1,717 Jan-08-2022, 12:13 PM
Last Post: law
  tkinter auto press button kucingkembar 2 3,197 Dec-24-2021, 01:23 PM
Last Post: kucingkembar

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020