function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['ateralbus', 4], ['berghausi', 12], ['cacellensis', 5], ['canariensis', 8], ['hendricksi', 7], ['hungaricus', 5], ['moravicus', 25], ['neumayri', 5], ['ponderoaustriacus', 6], ['ponderovagus', 5], ['pulcher', 6], ['trochulus', 13], ['tschermaki', 7], ['venulatus', 9], ['voeslauensis', 12], ['Other (8)', 21] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Species (n=150)', 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);