Well, I finally figured out how to display 2 Google column charts on one page here
http://racekarts.com/test6.html The only problem I am having now is getting the chart title & sub title to display.
I have tried using this code for chart1
// Set chart options
var options1 = {title: '2015 GCKI Membership Stats',
subtitle: 'Total Members: 2015'};
I tried this code for chart2
// Set chart options
var options2 = {
chart2: {
title: '2015 GCKI Membership Stats',
subtitle: 'New, Renewed & Expired members: 2015',
}
};
But the title & subtitle do not show for wither chart.
Thank you for any help you can give with this problem!