function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 2], ['Bijdragen tot de Flora van Nederlandsch Indie', 1], ['Birkhaeuser Verlag', 2], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 3], ['Brittonia', 2], ['Bulletin du Jardin Botanique de Buitenzorg', 1], ['Check List', 3], ['European Journal of Taxonomy', 14], ['Feddes Repertorium Specierum Novarum Regni Vegetabilis, Beihefte', 1], ['G. Haase', 1], ['Kew Bulletin', 1], ['Notizblatt des Königlichen Botanischen Gartens und Museums zu Berlin', 3], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 2], ['Order out of Chaos. Linnaean Plant Types and their Types', 3], ['Phytotaxa', 6], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=46)', 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);