function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 10], ['Amerothyasella', 1], ['Diplodontus', 9], ['Eupanisellus', 8], ['Hydryphantes', 37], ['Kazakhithyas', 3], ['Panisopsis', 7], ['Panisus', 6], ['Parathyas', 3], ['Protzia', 21], ['Tadjikothyas', 2], ['Tartarothyas', 3], ['Thyopsis', 4], ['Todothyas', 2], ['Trichothyas', 8], ['Other (8)', 8] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Genus (n=132)', 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);