function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['Bellorchestia', 289], ['Chelorchestia', 73], ['Chroestia', 148], ['Cocorchestia', 220], ['Hermesorchestia', 240], ['Insularorchestia', 89], ['Notorchestia', 1276], ['Orchestia', 173], ['Persianorchestia', 257], ['Platorchestia', 1121], ['Subantarctorchestia', 261], ['Talorchestia', 538], ['Transorchestia', 180], ['Vallorchestia', 87], ['Waematau', 72], ['Other (29)', 660] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Genus (n=5684)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByEpithet', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivSpecimensByEpithet')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartSpecimensByEpithet);