function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['alsinella', 4], ['blandella', 2], ['blandelloides', 3], ['dianthella', 1], ['fibigerium', 22], ['fischerella', 1], ['habeleri', 1], ['huebneri', 2], ['junctella', 1], ['kroesmanniella', 1], ['lamai', 1], ['marmorea', 3], ['proxima', 6], ['schleichi', 2], ['tricolorella', 32], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Species (n=86)', 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);