size of text in TPaveLabel
Wolfgang Korsch (wkorsch@server1.pa.uky.edu)
Thu, 2 Apr 1998 18:53:05 -0500
Hi,
I try to print some text in my canvas using the following commands:
sprintf(text," normalized Chisq: %f", chi2);
TPaveLabel Chisq(1050,0.,1070,0.0005, text);
Chisq.SetTextSize(0.2);
Chisq.Draw();
That seems to work fine, except that the TextSize doesn't change when
I change the value in SetTextSize. It works fine, when I use
TPaveLabel Chisq(1050,0.,1070,0.0005, "some text");
How can I get around this?
Thanks a lot.
Wolfgang