function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Algemeene Konst- en Letter-Bode', 2], ['American Museum Novitates', 2], ['Anzeiger', 1], ['Biodiversity Data Journal', 3], ['European Journal of Taxonomy', 4], ['Journal of Natural History', 2], ['Journal of the Academy of Natural Sciences of Philadelphia', 3], ['Natuurkunde Tijdschrift voor Nederlandsche-Indiƫ', 4], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 5], ['Proceedings of the United States National Museum, 3', 5], ['Proceedings of the Zoological Society of London, B', 3], ['Records of the Australian Museum', 4], ['Schmerber', 2], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 3], ['Zootaxa', 42], ['Other (20)', 20] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=105)', 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);