Hi,
There's a brand new feature that was just released to our release candidate, that can help you here. A new option called
chartArea was added, which allows controlling the location and size of the main chart area. It contains 4 members:
top,
left,
height,
width. Each of those 4 members can be either a number, in which case it has a unit of pixels, or a string that ends with '%', in which case it denotes percentage out of the total height/width (respectively). So for example, if you want the main chart area to take the full size of the div, leaving no space for peripheral elements like titles/legend/axis-labels, you could specify
chartArea: {top:0, left:0, height:'100%', width:'100%'}. In addition, the new release candidate allows positioning those peripheral elements inside the chart area (on top of the graph itself). All this will be documented when the RC turns final.
To use the release candidate, change the version number in the google.load call from '1' to '1.1'.