HOWTO: Simple plot with no borders and a white background

Hello Fellow ROOT’ers,

Given that it took me a long time to figure out how to produce a plain plot with no borders and a white background, I thought I would share what turned out to be simple fix. Just add the following to the top of your C script:

gStyle->SetCanvasColor(0);
gStyle->SetPadColor(0);
gStyle->SetFrameBorderMode(0);

Opps! I forgot:

gStyle->SetFillColor(0);