Can I draw a 2D hist with TTree:Draw()?

I am not sure whether TTree:Draw() is only able to draw a 1D histogram.
Is it possible to draw a 2-Dimension histogram by using TTree:Draw()?

TTree::Draw can generate 1, 2, 3, 4-D histograms.
See examples in the tutorials (eg ntuple.C).
To generate a 2-d plot, do, eg
tree.Draw(“y:x”)
See documentation of TTree::Draw at:
root.cern.ch/root/htmldoc/TTree.html#TTree:Draw

Rene