function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['Anatoliacampa', 4], ['Austrjapyx', 3], ['Cretojapyx', 2], ['Evalljapyx', 5], ['Hecajapyx', 1], ['Holjapyx', 1], ['Imazighenjapyx', 1], ['Japyx', 9], ['Mueggejapyx', 7], ['Nanojapyx', 1], ['Occasjapyx', 1], ['Opisthjapyx', 1], ['Parindjapyx', 3], ['Teljapyx', 4] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Genus (n=43)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByEpithet', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivSpecimensByEpithet')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartSpecimensByEpithet);