Strange behaviour of TLegend

From: C. Bernet (bernet@phnx7.saclay.cea.fr)
Date: Tue Mar 07 2000 - 19:56:54 MET


Hello,

I can't make TLegend work correctly : When I create an entry for an
histogram with "f" option, I get a box with a thick vertical line in the
middle, wich doesn't look at all like the plot. Does anybody experiences
this kind of problem with this tool (which would in principle be so
useful) ?

I'm using root 2.23/12 with RedHat 5.1 and here is an example macro :

{
gROOT->Reset();
gROOT->SetStyle("Plain");
gStyle->SetFillColor(0);

TH1F *h=new TH1F("h"," ",5,0,5);

h->SetFillStyle(3004);
h->SetFillColor(1);

h->Fill(3);
h->Draw();

TLegend *leg=new TLegend(0.2,0.2,0.4,0.4);
leg->AddEntry(h,"test","f");
leg->Draw();
}  

Thanks,
		Colin



This archive was generated by hypermail 2b29 : Tue Jan 02 2001 - 11:50:21 MET