I've got a google visualization graph and a legenda for that graph on top of the graph.
These are my graph options:
var chartOptions ={
width: 700, height: 500,
chartArea: {width: '80%', height: '80%', top:20},
legend: {position: 'top'},
titlePosition: 'in',
axisTitlesPosition: 'in',
hAxis: {showTextEvery: '1', textPosition: 'out'},
vAxis: {textPosition: 'out'}
}
I was wondering if there is a way to set the margin between the legenda and the graph or maybe I've messed something up by setting these options.
Thanks in advance.