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
It's annoyed when Google did provide title position but with jQuery, you can do it
$("#YOUR_GRAPH_WRAPPER svg text").first()
.attr("x", (($("#time-series-graph svg").width() - $("#YOUR_GRAPH_WRAPPER svg text").first().width()) / 2).toFixed(0));
Basically, you want to access the first text tag which is your chart title and change value of x attribute. To center it, take svg width (your graph width) subtract by title widtch, then divide by 2 :) Happy hacking :)