'Styling tkinter Scale class
Here is the scale I have:
self.volume_slider = tk.Scale(
self,
from_=0,
to=100,
orient=tk.HORIZONTAL,
background="#fdfdfe",
highlightbackground="#fdfdfe",
highlightcolor="#fdfdfe",
troughcolor="#37b9fe",
showvalue=False,
resolution=1,
bd=0,
width=7)
But my desired scale is something like this:
[Edit] How can this be achieved?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|


