function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bijdragen tot de Flora van Nederlandsch Indie', 1], ['Biodiversity Data Journal', 38], ['Birkhaeuser Verlag', 36], ['Candollea', 1], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 24], ['Flora Helvetica', 30], ['Info Flora Schweiz', 36], ['Journal of Species Research', 3], ['Linzer biologische Beiträge', 5], ['Nova Guinea: a journal of botany, zoology, anthropology, ethnography, geology and palaeontology of the Papuan region.', 1], ['Order out of Chaos. Linnaean Plant Types and their Types', 20], ['PhytoKeys', 3], ['Phytochemistry', 1], ['Phytotaxa', 28], ['Vegetatio', 2], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=230)', 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);