Google charts legend manipulation
For full control I'd suggest turning them off
legend : { position:"none"}
Creating your own totally customised legend outside the chart with html.
Then binding your custom legend up to the chart using the select event, combined with click or hover / focus events (whatever you want) on your custom legend.
see https://code.google.com/apis/ajax/playground/?type=visualization#interaction_using_events for a start.
There isn't a way to manipulate the legends as we wish. In the question of the bounty: You can use
in two of the charts
legend : 'none'
and also use colours to guarantee that all elements have the same colour.
colors:['red','#004411']
Other than that we can't manipulate them much more unfortunately :(