TH1F: loosing Line when draw with option "hbar"

Dear ROOTers,

I have the following problem, which I don’t understand.
My simple pyRoot script:
#----->
h=TH1F(“h1”,“gauss”,100,-3,3)
h.FillRandom(“gaus”,10000)
h.SetFillColor(kRed)
h.SetLineColor(kBlue)
h.SetFillStyle(3001)
h.Draw()

or

#h.Draw(“hbar”)
#----->
Drawing w/o any option gives the plot “no_draw_option.png” BUT using the draw option “hbar” (see hbar_draw_option.png) let’s the blue line disappear.
In fact I would need that “blue line” for some reason to be there in the vertical “hbar” plot.
Is there a way to draw a TH1F vertically including that line ?

Thanks.
Florian




No … The bar and hbar option do not have lines around see: root.cern.ch/root/html/THistPainter.html#HP10
Each bin is drawn individually.