function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2], ['Acromycter', 2], ['Ariosoma', 95], ['Bathycongrus', 150], ['Bathyuroconger', 39], ['Castleichthys', 2], ['Conger', 268], ['Congrhynchus', 7], ['Gnathophis', 5], ['Gorgasia', 7], ['Macrocephenchelys', 24], ['Paraconger', 105], ['Pseudophichthys', 55], ['Rhynchoconger', 8], ['Rostroconger', 2], ['Other (4)', 2] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Genus (n=773)', 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);