I want to know the command to moving pad

Hello everyone,
I use the function gstyle and it’s works but i want to move the pad on left. When i can do that ?

gStyle->SetOptStat(0);
gStyle->SetOptFit(1111);

TCanvas *c1 = new TCanvas();

Try:

gStyle->SetPadLeftMargin(0.05);

More info you can find in TStyle documentaion

Thank you linev

Sorry but i think I explained myself poorly.

I want to move the window with stats on left. Not the pad sorry.

Then try:

gStyle->SetStatX(0.5);
gStyle->SetStatW(0.2);