SetOption("Surf3z")

Hi All,

I was looking at the plots at the THistPainter page: root.cern.ch/root/html/THistPainter.html

I am trying to draw a surface plot that has the actual surface part drawn with the nice colors like “Surf1” but also want the x,y distribution drawn on the top with colors, just like “Surf3”

Is there a way to have the best of both of these?

Thanks,

J

Try:
someTH2->Draw(“SURF1”);
someTH2->Draw(“SURF3 SAME”);