Draw a Histogram on top of a stack

I actually have a background stack in which I draw it by looping over several samples. Then I have the data histogram which is meant to be ON TOP of the stack to show the data to background difference. However, what I get is that some of the data markers are drawn behind the stack itself.
I used for drawing the data Draw.(“EP”) , and for drawing the stack Draw.(“hist same”). Any idea about such a problem?
Thank you,

issue resolved, thank you anyway :slight_smile:
For whoever having the same problem:

your_data_plot_you_are_comparing.Draw(“e”)
your_stack.Draw(“same,hist”)
your_data_plot_you_are_comparing.Draw(“e,same”)

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