function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 6], ['Aurigequula', 6], ['Deveximentum', 5], ['Equulites', 36], ['Eubleekeria', 56], ['Karalla', 67], ['Leiognathus', 64], ['Nuchequula', 281], ['Photopectoralis', 45], ['Photoplagios', 7], ['Secutor', 102] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Genus (n=675)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByEpithet', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivSpecimensByEpithet')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartSpecimensByEpithet);