Centering Graph/Axis Titles

Is there a way to center the titles of a graph along the length of the axis they describe? I am using C Scripting with the root command line to create a graph from a TNtuple and I have formatted everything else properly by using the TStyle and TGaxis classes to set the rest of the parameters. My problem is that the Offset and CenterTitle methods reposition perpendicularly in relation to the axis instead of horizontally.
I want my axis to look like this (where a “.” represents blank space) :


1…2…3…4…5…6…7
…Title…

And it currently looks like this:


1…2…3…4…5…6…7
Title…

   Graph->GetXaxis()->SetTitle("aaaaa");
   Graph->GetXaxis()->CenterTitle(true);