function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 17], ['Bulletin du Jardin Botanique de Buitenzorg, sér. 3', 4], ['Check List', 7], ['European Journal of Taxonomy', 7], ['Gardens\' Bulletin (Singapore)', 12], ['Journal of Orthoptera Research', 1], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 2], ['Transactions of the Linnean Society of London, Second Series. Botany', 1], ['Zootaxa', 47] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=98)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 9, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);