Steve,

I'm not a expert in HTML/CSS, but here is what works for me:
1) in HTML
<div class='two_graphs'>
   <img src=...>
   <img src=...>
</div>

2) in CSS
.two_graphs {
        display: block;
        width: 800px; // adjust width to be greater than the sum of your
graphs' widths
        margin: 0 auto; // the auto margin centers the two graphs. Adjust as
necessary to move left or right.
}

Cheers,

 - gael
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Chart API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-chart-api?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to