function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 7], ['Allosuctobelba', 0], ['Coartobelba', 1], ['Helvetobelba', 0], ['Kuklosuctobelba', 1], ['Neosuctobelba', 3], ['Novosuctobelba', 4], ['Parasuctobelba', 4], ['Suctobelba', 192], ['Suctobelbella', 51], ['Suctobelbila', 6] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Genus (n=269)', 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);