function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['assectator', 17], ['bertae', 495], ['brachychaetum', 79], ['brasiliense', 196], ['guildingi', 26], ['helenae', 23], ['japonicum', 18], ['kaweahense', 120], ['oshimense', 24], ['parvum', 81], ['poecilothecum', 20], ['rafaeli', 35], ['sartor', 97], ['tenue', 76], ['visaliae', 26], ['Other (52)', 211] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Species (n=1544)', 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);