function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['ACCADEMIA NAZIONALE DEI XL Estratto dai Rendiconti', 1], ['Annales historico-naturales Musei nationalis hungarici', 12], ['Annals and Magazine of Natural History', 2], ['Biodiversity Data Journal', 18], ['Buletinul ºtiinþific al Muzeului Naþional de Etnografie ºi Istorie Naturalã a Moldovei', 2], ['European Journal of Taxonomy', 3], ['Journal of Natural History', 4], ['Khumbu Himal', 1], ['Mededelingen Landbouwhogeschool Wageningen', 2], ['Pakistan Journal of Nematology', 15], ['ZooKeys', 5], ['Zoologischen Anzeiger', 1], ['Zoologischer Anzeiger', 1], ['Zootaxa', 88] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=155)', 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);