If I want to make a multipanel plot in cern root by dividing the canvas with zero margin between the plots, then the label size of the plots do not match, since the plots in left and the bottom will be drawn with the x and y axis labels but other plots won't be drawn with it.For Example,
TCanvas *c = new TCanvas();c->Divide(2,2,0,0); // the 0,0 will set the margin between the pads to be zeroc->SetBottomMargin(0.15);c->SetLeftMargin(0.15);for(int i=0; i<4; i++) {c->cd(i+1);histogram[i]->Draw();}
Is there any way, that all the histograms are drawn such that they have size (excluding the space taken by the labels for left and bottom plots)
I tried to manually set different size of labels for each panel in the canvas, but then if I have to change the dimensions of the canvas or divide the canvas in some other number of panels, then I have to manually again set the labels differently for each panel via hit and trail method.