Consider this example:
TCanvas * c = new TCanvas;
TH1 * h = new TH1F("h", "h", 5, 0.0, 5.0);
h -> Draw();
TLatex * latex = new TLatex;
latex -> DrawLatex(0.5, 0.5, "latex");
latex -> SetTextAngle(45);
The output is
I set latex -> SetTextAngle(45); but apparently it hasn’t worked. What is wrong?
Please read tips for efficient and successful posting and posting code
ROOT Version: Not Provided
Platform: Not Provided
Compiler: Not Provided

