29 Color_t indices[2] = {};
30 if (ROOT::CocoaTutorials::FindFreeCustomColorIndices(indices) != 2) {
31 ::Error(
"transp_text",
"failed to create new custom colors");
36 const Color_t grayColorIndex = indices[0], blackColorIndex = indices[1];
37 new TColor(grayColorIndex, 0.8, 0.8, 0.8,
"transparent_gray", 0.85);
38 new TColor(blackColorIndex, 0., 0., 0.,
"transparent_black", 0.5);
41 TCanvas *
const c1 =
new TCanvas(
"transparent text",
"transparent text demo", 10, 10, 900, 500);
43 if (gVirtualX && !gVirtualX->InheritsFrom(
"TGCocoa")) {
44 ::Warning(
"transt_text",
"You can see the transparency ONLY in a pdf or png output (\"File\"->\"Save As\" ->...)\n"
45 "To have transparency in a canvas graphics, you need OS X version with cocoa enabled");
49 c1->SetBottomMargin(0.15);
52 const char *people[nx] = {
"Jean",
"Pierre",
"Marie",
"Odile",
53 "Sebastien",
"Fons",
"Rene",
"Nicolas",
"Xavier",
"Greg",
54 "Bjarne",
"Anton",
"Otto",
"Eddy",
"Peter",
"Pasha",
55 "Philippe",
"Suzanne",
"Jeff",
"Valery"};
57 TH1F *
const h =
new TH1F(
"h4",
"test", nx, 0, nx);
60 for (Int_t i = 0; i < 5000; ++i)
61 h->Fill(gRandom->Gaus(0.5 * nx, 0.2 * nx));
64 for (Int_t i = 1; i <= nx; ++i)
65 h->GetXaxis()->SetBinLabel(i, people[i - 1]);
69 TPaveText *
const pt =
new TPaveText(0.3, 0.3, 0.98, 0.98,
"brNDC");
71 pt->SetFillColor(grayColorIndex);
72 pt->SetTextColor(blackColorIndex);