function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Amazoniana', 8], ['Arkiv för Zoologi', 11], ['Bulletin of the American Museum of Natural History', 37], ['Bulletin of the Association for Mexican Cave Studies', 10], ['Ecologica Montenegrina', 8], ['Invertebrate Taxonomy', 28], ['Journal of Arachnology', 27], ['Journal of Natural History', 14], ['Memoirs of the Queensland Museum', 9], ['Occasional Papers of the Museum of Texas Tech University', 14], ['Poeyana, A', 14], ['Records of the Western Australian Museum Supplement', 9], ['Texas Memorial Museum, Speleological Monographs', 9], ['Zoological Journal of the Linnean Society', 15], ['Zootaxa', 60], ['Other (53)', 101] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=374)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);