Aboghazala / AwesomeTkinter

Pretty tkinter widgets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About the progressbar

TianT1209 opened this issue · comments

I have a questioin about the progressbar. If I have changed the mode to 'indeterminate', the progressbar don't work. How should I change the code?

@TianT1209
unfortunately both RadialProgressbar and RadialProgressbar3d works only in 'determinate' mode, that's why this option is hard-coded.

and if I want to change the value of the progressbar

and if I want to change the value of the progressbar

@zocky96
you can use "set()" method to set progressbar or get() to get current value
example:

bar = atk.RadialProgressbar(root)
bar.pack()
bar.set(30)