function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['Burramyidae', 0], ['Caenolestidae', 0], ['Dasyuridae', 250], ['Didelphidae', 965], ['Macropodidae', 0], ['Microbiotheriidae', 0], ['Myrmecobiidae', 0], ['Notoryctidae', 0], ['Peramelidae', 0], ['Petauridae', 1373], ['Phalangeridae', 0], ['Phascolarctidae', 0], ['Tarsipedidae', 0], ['Thylacinidae', 0], ['Thylacomyidae', 0], ['Other (1)', 0] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Family (n=2588)', 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);