function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['Auradilus', 1], ['Auricythere', 13], ['Berguecythere', 14], ['Bulbocythere', 3], ['Caudites', 32], ['Coquimba', 1], ['Cornucoquimba', 4], ['Neocaudites', 1], ['Neohornibrookella', 70], ['Puriana', 3], ['Ufocandona', 1], ['Urocythereis', 1] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Genus (n=144)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByEpithet', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivSpecimensByEpithet')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartSpecimensByEpithet);