TMultiGraph for histograms


Any way to plot optimal range for many histograms not like this:

h1.Draw("histo")
h2.Draw("histo same")
h3.Draw("histo same")

h1.SetMaximum(1.1 * max(h1.GetMaximum(), h2.GetMaximum(), h3.GetMaximum()))

but smarter akin to TMultiGraph ?


THStack (use the “nostack” or “nostackb” drawing option).

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.