function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 3], ['Alipes', 9], ['Arthrorhabdus', 6], ['Asanada', 7], ['Colobopleurus', 5], ['Cormocephalus', 259], ['Ethmostigmus', 73], ['Otostigma', 4], ['Otostigmus', 1058], ['Perustigmus', 7], ['Rhoda', 1], ['Rhysida', 105], ['Scolopcryptops', 1], ['Scolopendra', 788], ['Trachycormocephalus', 5], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Genus (n=2332)', 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);