function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 8], ['Dictyosporiaceae', 15], ['Didymellaceae', 73], ['Didymosphaeriaceae', 30], ['Halojulellaceae', 20], ['Leptosphaeriaceae', 17], ['Massariaceae', 14], ['Massarinaceae', 24], ['Melanommataceae', 18], ['Morosphaeriaceae', 11], ['Phaeosphaeriaceae', 19], ['Pleosporaceae', 39], ['Pyrenidiaceae', 17], ['Roussoellaceae', 70], ['Tetraplosphaeriaceae', 13], ['Other (37)', 129] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Family (n=517)', 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);