Changing fonts of TParalledCoord

Dear all,

I executed $ROOTSYS/tutorials/tree/parallelcoord.C. Now, I’d like to change the title and label fonts of parallel coordinates.
Would you tell me how to do it?

Best Regards,

Hide

At the end of the macro add:

gPad->Update();
auto p = (TPaveText*)gPad->GetListOfPrimitives()->FindObject("TPave");
p->SetTextFont(42);

Thanks for your quick reply!

Your suggestion is effective for TPaveText Class.
Because it is one of some ROOT Classes inherited from TAttText Class.

But, TParallelCoord and TParallelCoordVar Classes are not inherited from TAttText Class. I’d like to change each axis title font such as “x”, “y” and so on.
Is there any other way?

Best Regards,

Hide

Actually the texts drawn in the context of parallel coordinates use the default text attributes.
So you can do:

root [0]  gStyle->SetTextFont(41);
root [1] .x parallelcoord.C