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