function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['Arcotheres', 384], ['Austinixa', 438], ['Austrotheres', 41], ['Clypeasterophilus', 24], ['Discorsotheres', 259], ['Glassella', 98], ['Indopinnixa', 123], ['Nepinnotheres', 51], ['Ostracotheres', 58], ['Pinnixa', 27], ['Pinnotheres', 547], ['Plenotheres', 35], ['Rathbunixa', 15], ['Tubicolixa', 16], ['Tumidotheres', 47], ['Other (18)', 97] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Genus (n=2260)', 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);