function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1], ['Aptandraceae', 6], ['Balanophoraceae', 19], ['Erythropalaceae', 38], ['Loranthaceae', 64], ['Olacaceae', 215], ['Opiliaceae', 2], ['Santalaceae', 8], ['Schoepfiaceae', 1], ['Strombosiaceae', 506], ['Thesiaceae', 310], ['Viscaceae', 19], ['Ximeniaceae', 0] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Family (n=1189)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByEpithet', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivSpecimensByEpithet')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartSpecimensByEpithet);