function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 1], ['Biodiversity Data Journal', 9], ['Fossil Imprint', 1], ['Geodiversitas', 1], ['Info Flora Schweiz', 1], ['Insecta Mundi', 2], ['International Journal of Systematic and Evolutionary Microbiology', 1], ['Journal of the Arnold Arboretum', 1], ['Laurentius Salvius', 1], ['Order out of Chaos. Linnaean Plant Types and their Types', 6], ['PhytoKeys', 24], ['Phytochemistry', 1], ['Phytotaxa', 16], ['Revue suisse de Zoologie', 1], ['Zootaxa', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=72)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);