Hi,
I would like to draw to graphs (with TGraphErrror) in the same Canvas.
I am trying:
gr1->Draw(“AP”);
gr2->Draw(“AP,SAME”);
but it still draws the last graph, only.
What do I have to do?
Cheers,
Gordon
Hi,
I would like to draw to graphs (with TGraphErrror) in the same Canvas.
I am trying:
gr1->Draw(“AP”);
gr2->Draw(“AP,SAME”);
but it still draws the last graph, only.
What do I have to do?
Cheers,
Gordon
do (see doc)
gr1->Draw("AP");
gr2->Draw("P,SAME");
Rene
Hi,
Thanks for answer!
Gordon