Questions tagged [progress-bar]

A progress bar is a component in a graphical user interface used to convey the progress of a task, such as a download or file transfer.

A progress bar is a component in a graphical user interface used to convey the progress of a task, such as a download or file transfer. The graphic is often displayed as a bar which illustrates the task percentage complete. Descriptive textual information may accompany the bar.

enter image description here

Typically, determinate progress bars use a linear function, such that the advancement of a progress bar is directly proportional to the amount of work that has been completed. However, varying disk, memory, processor, bandwidth and other factors complicate this estimate. Consequently, progress bars often exhibit non-linear behaviors, such as acceleration, deceleration, and pauses. These behaviors, coupled with humans' non-linear perception of time passing, produces a variable perception of how long progress bars take to complete. However, this also means progress bars can be designed to "feel" faster. Finally, the graphical design of progress bars has also been shown to influence humans' perception of duration

Indeterminate progress bars, on the other hand, provide a simple animation (often in the for of a spinning ring or an horglass).
These are meant to indicate that an operation is currently running, but it's not known when it will be over.

They may look similar to this:

enter image description here

7560 questions
2
votes
2 answers

How to show progress bar for game in andengine

I am developing game in andengine..here i need to show progress bar for time up of game.. is it possible to fix progressbar using andengine. i have searched but i got only for android. Can anyone give me some articles and suggestion please..
deepa
  • 455
  • 3
  • 8
  • 17
2
votes
1 answer

How to create progress bar with rounded corners / Edge in Xamarin forms

I need the expert help. I am struggling to create the ProgressBar with rounded corner in Xamarin Form. I have searched on google and found the couple of post by using the layer property ex. "Layer.CornerRadius = 5" but my code does not support…
skt
  • 449
  • 14
  • 32
2
votes
0 answers

Visual Styles-related operation resulted in an error On Windows classic theme

im running windows 7 embedded and to save on performance i change the visual styles from windows 7 basic to windows classic. on which im running WinForms appl with a custom progress bar. the error is on the line Rectangle.Inflate(x,y); On windows 7…
styx
  • 1,852
  • 1
  • 11
  • 22
2
votes
2 answers

How to make progress bar move slowly by JavaScript

As I am increasing its width by 10%, it will apply suddenly, I want it to have some smooth movement. var counter=0; function moveBy10(x){ var width =10; var bar = document.getElementById('bar'); counter++; if(counter*x < 101){ …
jsduniya
  • 2,464
  • 7
  • 30
  • 45
2
votes
1 answer

SVG Progress bar dashed on a scale of 75 of the circle

I am stucked on an issue since now 2 days. I'll try to be short on this but this is what the result should look like : I currently have no idea of how to do that, I'll try to start with a hardcoded value, and then I'll try to match the circle…
nook
  • 1,729
  • 1
  • 12
  • 34
2
votes
2 answers

JavaFx TableView ProgressBar with Conditional Color change

Need: To be able to change the color of the ProgressBar in TableView depending on the condition in a multi-threaded program Research: I refer to link - Link1 based on which I am able to setup the ProgressBar in TableView being updated by multiple…
iCoder
  • 1,406
  • 6
  • 16
  • 35
2
votes
0 answers

ReactJS ProgressBar value is not updating on par with state.progressValue

I'm currently using import { Progress } from 'react-sweet-progress'; and before I also tried import { Progress } from 'reactstrap'; which just uses bootstrap 4 ProgressBar. I have a state that maintains the progressValue, and using audio HTML tag…
M. Lee
  • 125
  • 2
  • 6
2
votes
3 answers

Alternative to barColor property in progress bar + Flex 4

I had used a property 'barColor' in ProgressBar component for showing performance with filling colours. Now I am moving the application to Flex 4. So this property is not available in Flex 4. Can you please any one known about the alternative for…
RKCY
  • 4,095
  • 14
  • 61
  • 97
2
votes
1 answer

How do I remove a CAShapeLayer in progressbar circle

I have the following code, which I am implementing to download a PDF with a progress circle. It is working for me, first I check that the file is already saved in the "Documents" directory and if it is true I simply show the PDF, and if the pdf file…
Mario Burga
  • 1,107
  • 1
  • 13
  • 19
2
votes
1 answer

Powershell progress bar for invoke-sqlcmd

So im trying to make a backup script that will download a csv from my mssql, then zip the file, then upload the backup to amazon S3. The issue im having is the table is 20Million lines on average when i run the script daily. and it looks like it…
2
votes
1 answer

VBA Excel Progress Bar Form doesnt Update. Can I slow down processing?

I have a workbook that takes about 2-4 minutes to load data from a server and I'd like to implement a userform progress bar. I have found numerous great websites on how to create these progress bars. I've created one that works when I step through…
St. Jimmy
  • 73
  • 8
2
votes
1 answer

Javafx how to implement a busy and wait dialog routine

I have a problem like the one exposed at JavaFX indeterminate progress bar while doing a process , but I use a javafx dialog Alert in order to show a dialog with inside a progress bar using a code like this: Alert busyWaitAlert = new…
famedoro
  • 1,223
  • 2
  • 17
  • 41
2
votes
0 answers

Progress bar for data collection outside of Shiny server

I have a Shiny app that pulls data from SQL upon opening the app. The data set has a large number of observations and is added to daily. Currently it takes about 16 seconds to load the data. I'd like to add a progress bar to show users that the…
Lost
  • 331
  • 1
  • 12
2
votes
0 answers

XHR and php Progress bar, working on local, not on remote

More explanation here : Im importing products to my DB, and everytime a product is imported I display the percent calculated earlier: //Progress bar set_time_limit(0); ob_implicit_flush(true); ob_end_flush(); sleep(1); $p =…
Ggs
  • 181
  • 15
2
votes
3 answers

PowerShell - Add text to ProgressBar (GUI)

I'm trying to put a text on a progress bar (percentage, etc) but it's not working. Progress bar text is based on this. Below is a simplified version of the…
ldg
  • 21
  • 1
  • 3