function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['ACCADEMIA NAZIONALE DEI XL Estratto dai Rendiconti', 4], ['ANNALES de SPÉLÉOLOGIE', 1], ['Animalia', 1], ['Annales historico-naturales Musei nationalis hungarici', 6], ['Annals and Magazine of Natural History', 1], ['Biodiversity Data Journal', 55], ['Buletinul ºtiinþific al Muzeului Naþional de Etnografie ºi Istorie Naturalã a Moldovei', 3], ['Fragmenta Faunistica', 4], ['Khumbu Himal', 2], ['Linzer biologische Beiträge', 6], ['Pakistan Journal of Nematology', 7], ['Zoologischen Anzeiger', 7], ['Zoologischer Anzeiger', 7], ['Zoosystematics and Evolution', 2], ['Zootaxa', 14], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=121)', 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);