function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 772], ['epibathra', 838], ['funkae', 763], ['haelaauensis', 1651], ['hauicola', 704], ['hesperomanniella', 4397], ['keaensis', 779], ['kolea', 1900], ['lama', 1632], ['lipochaetaella', 717], ['molokaiensis', 2678], ['neraudicola', 843], ['obamaorum', 779], ['pipturiella', 748], ['touchardiella', 1537], ['Other (24)', 1412] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Species (n=22150)', 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);