Pergunta

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);
Foi útil?

Solução

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top