function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 522543], ['Barychelidae', 287269], ['Ctenidae', 914917], ['Gnaphosidae', 11281], ['Linyphiidae', 91264], ['Lycosidae', 15848], ['Ochyroceratidae', 37760], ['Oonopidae', 62148], ['Pholcidae', 47991], ['Salticidae', 26094], ['Tetragnathidae', 103639], ['Theraphosidae', 180046], ['Thomisidae', 392547], ['Trachelidae', 26439], ['Zodariidae', 310136], ['Other (108)', 138641] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Family (n=3168563)', 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);