I was assigned to implement some Charts, and the bosses requested me to separate the title of the chart from the Chart, I tried to move the chart\'s area a little from the t
I don't think you can do this through options in the vis api.
However....
The title is held in a text element that uses x/y positioning
If you are using JQuery, this becomes a piece of cake
$("text:contains(" + vencOptions.title + ")").attr({'x':'60', 'y':'20'})
Adding that immediately after the .draw call and tweaking the x and y coords gives you pixel-perfect control.
You can do it without JQuery, but time is pressing and I'll leave that to someone else :)