function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Protozoologica', 2], ['Acta-Protozoologica', 2], ['BMC Microbiology', 2], ['Bericht über die zur Bekanntmachung geeigneten Verhandlungen der Königlichen Preußischen Akademie der Wissenschaften zu Berlin', 2], ['Biologicke Spisy Vysoké èkoly Zvérolék, Brno', 1], ['Carnets de Géologie [Notebooks on Geology]', 1], ['Comparative Parasitology', 1], ['European Journal of Protistology', 2], ['Jenaische Zeitschrift für Naturwissenschaft herausgegeben von der medizinisch-naturwissenschaftlichen Gesellschaft zu Jena, Funf', 4], ['Monatsberichte der Königlich Preussischen Akademie des Wissenschaften zu Berlin', 4], ['Palaeontologia Electronica', 10], ['Protist', 7], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 2], ['Zoological Journal of the Linnean Society', 2], ['Zootaxa', 5], ['Other (12)', 12] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=59)', 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);