function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['Acrobolbaceae', 15], ['Adelanthaceae', 18], ['Anastrophyllaceae', 846], ['Arnelliaceae', 11], ['Brevianthaceae', 11], ['Cephaloziaceae', 148], ['Cephaloziellaceae', 545], ['Gymnomitriaceae', 31], ['Lepidoziaceae', 221], ['Lophocoleaceae', 717], ['Lophoziaceae', 9], ['Plagiochilaceae', 45], ['Scapaniaceae', 969], ['Solenostomataceae', 30], ['Trichocoleaceae', 8], ['Other (9)', 23] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Family (n=3647)', 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);