Displaying 2D-Hist from a certain angle

In my Analysis-Code I use several TH2F. They are only useful when viewed from a certain angle, so after execution I always have to manually rotate all of them. I guess there is a way to set a certain viewing angle (or to rotate the object) in the code, however, I couldn’t find anything in the documentation or class reference.
Thanks for your help!

Cheers,
Martin

Do:

TCanvas c; c.SetTheta(12); //or any other angle default=30 c.SetPhi(67); //same myhist.Draw("lego");Rene