function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 4], ['Amphimonhystrella', 3], ['Diplolaimelloides', 8], ['Elzalia', 2], ['Geomonhystera', 6], ['Halomonhystera', 0], ['Monhystera', 48], ['Monhystrella', 1], ['Paramonohystera', 2], ['Pseudosteineria', 9], ['Theristus', 1] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Genus (n=84)', 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);