function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annalen des Naturhistorischen Museums in Wien, Serie B, Botanik und Zoologie', 1], ['Bijdragen tot de Flora van Nederlandsch Indie', 1], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 12], ['Bulletin du Jardin Botanique de Buitenzorg, Série 2', 2], ['J. Cramer', 5], ['Notizblatt des Königlichen Botanischen Gartens und Museums zu Berlin', 2], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 7], ['Phytotaxa', 4], ['Taylor & Francis', 1], ['Transactions of the Linnean Society of London, Second Series. Botany', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=38)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);