How can I remove the text (i.e. 24%) from the progress bar? I only want to show a plain progress bar without any text. Is that possible?
Yes, you can achieve with setTextVisible() method, just set false. For example:
QProgressBar *pr = new QProgressBar;
pr->setValue(50);
pr->setTextVisible(false);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With