function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['Alexarasniidae', 1], ['Anisembiidae', 1], ['Archembiidae', 5], ['Clothodidae', 11], ['Embiidae', 2], ['Notoligotomidae', 1], ['Oligotomidae', 29], ['Scelembiidae', 25], ['Sinembiidae', 3], ['Sorellembiidae', 3] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Family (n=81)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByEpithet', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivSpecimensByEpithet')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartSpecimensByEpithet);