function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Apud Cornelium Haek', 1], ['Biodiversity Data Journal', 2], ['Birkhaeuser Verlag', 2], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 1], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 4], ['Info Flora Schweiz', 1], ['Laurentius Salvius', 5], ['Nova Guinea, ser. 2', 8], ['Order out of Chaos. Linnaean Plant Types and their Types', 20], ['PhytoKeys', 5], ['Phytochemistry', 2], ['Phytotaxa', 4], ['Transactions of the Royal Society of South Australia', 1], ['Zoosystema', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=57)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);