function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['albellus', 168], ['bidens', 118], ['bullatus', 66], ['canthariphilus', 161], ['concolor', 29], ['excavatus', 165], ['fallax', 41], ['hortensis', 31], ['kreusleri', 91], ['leai', 89], ['magelae', 56], ['obesus', 30], ['phanophilus', 42], ['pilbarensis', 40], ['ziczac', 122], ['Other (29)', 327] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Species (n=1576)', 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);