function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales historico-naturales Musei nationalis hungarici', 147], ['Annals and Magazine of Natural History', 44], ['Biodiversity Data Journal', 910], ['Buletinul ºtiinþific al Muzeului Naþional de Etnografie ºi Istorie Naturalã a Moldovei', 54], ['European Journal of Taxonomy', 238], ['Folia Parasitologica', 52], ['Journal of Natural History', 203], ['Mededelingen Landbouwhogeschool Wageningen', 75], ['Pakistan Journal of Nematology', 252], ['Revue suisse de Zoologie', 97], ['ZooKeys', 186], ['Zoological Journal of the Linnean Society', 46], ['Zoologischen Anzeiger', 60], ['Zoologischer Anzeiger', 74], ['Zootaxa', 3434], ['Other (119)', 792] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=6664)', 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);