Question

I have a qx.ui.indicator.ProgressBar , is there any way I can reverse the direction of progress bar (i.e. fill the bar from right to left) ?

Here is my code:

var pbar = new qx.ui.indicator.ProgressBar();
pbar.setDecorator(null);
pbar.setValue(30);
pbar.setWidth(400);
Was it helpful?

Solution

There is no public API for that. Just rotating the indicator would be a hack but could work.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top