views:

237

answers:

1

I'm trying to create a vertical progress bar in my Cocoa app, i.e, the progress bar should grow from bottom to top. I'm using NSProgressIndicator, and I can't find a way to specify vertical or horizontal. Can anybody please tell me is it possible to do it?

Thanks, Lee

A: 

You can set the transform of the control to rotate it pi/2 radians (90 degrees). That seems to be a common solution most people take.

fbrereto
Thanks, it worked!