Y-Axis Title Problem

Hello,

I have 6 sets of data that I wish to produce linear fits to and plot all in one canvas. My original code successfully did this except the y-axis title was covered by the y-axis numbers. In the code I have attached, I am now using the command SetTitleOffSet(1.5) to move the title aside, but now the title is cut-off on each plot (see dacplots.ps). How can I solve this? I am using ROOT Pro version 3.10/02 on Windows ME. Any help would be much appreciated.

Cheers, Andrew
data.txt (14.3 KB)
dacplots.ps (58.3 KB)
dac_plots.cpp (4.51 KB)

One possible way:

/* Create canvas and divide into 6 */
   TCanvas *cc = new TCanvas("cc","Canvas",1200,800);
   cc->Divide(3,2,0,0);
   cc->SetLeftMargin(0.15);
   cc_1->SetLeftMargin(0.15);
   cc_2->SetLeftMargin(0.15);
   cc_3->SetLeftMargin(0.15);
   cc_4->SetLeftMargin(0.15);
   cc_5->SetLeftMargin(0.15);
   cc_6->SetLeftMargin(0.15);