Title in TGraph

Hi,

I am using TGraph to represent some data, but I don’t need the tiitle.
I cannot find a way to remove the title from my graph: if I set it
to empty character string iI stilll get an empty little square drawn
in in the top left corner. (For some reason “SetTitleOffset” and "SetTitleSize"
operate on my “x” and “y” coordinate labels and not on the global title
of the graph, as I expected?)
Regards, Emil

Hi Emil,

Use:

gStyle->SetOptTitle(kFALSE); 

if you do not want to display the title

and:

gStyle->SetOptTitle(kTRUE); 

if you want to.

Cheers, Ilka