function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Alpine Entomology', 1], ['Beiträge Zur Entomologie = Contributions to Entomology', 3], ['Conilon coffee - The Coffea canephora produced in Brazil', 1], ['Nota Lepidopterologica', 2], ['Proceedings of IV REUNIÃO ITINERANTE DE FITOSSANIDADE DO INSTITUTO BIOLÓGICO e V ENCONTRO SOBRE DOENÇAS E PRAGAS DO CAFEEIRO', 1], ['Proceedings of the Linnean Society of New South Wales', 2], ['Rudolfinum – Jahrbuch des Landesmuseums für Kärnten', 1], ['Transactions and proceedings of the New Zealand Institute', 1], ['ZooKeys', 16], ['Zootaxa', 14] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=42)', 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);