function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Protozoologica', 7], ['Annales de la Faculte des Sciences du Cameroun', 4], ['Archiv für Protistenkunde', 5], ['Die Tierwelt Deutschlands und der angrenzenden Meeresteile nach ihren Merkmalen und nach ihrer Lebensweise', 3], ['European Journal of Protistology', 4], ['Havniae & Lipsiae', 35], ['Journal of Eukaryotic Microbiology', 7], ['Journal of Natural History', 18], ['Proceedings of the American Philosophical Society', 11], ['Studii si cercetari Biologie, Seria Biologie animala', 4], ['Transactions of the American Microscopical Society', 5], ['Wilhelm Engelmann', 3], ['Zoological Journal of the Linnean Society', 4], ['Zoologicheskii Zhurnal', 4], ['Zootaxa', 69], ['Other (27)', 32] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=215)', 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);