function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals of the Carnegie Museum', 3], ['Anzeiger', 7], ['Check List', 3], ['Cybium', 3], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien', 3], ['Evencias', 2], ['Ichthyological Exploration of Freshwaters', 5], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 2], ['Mémoires du Muséum National d’Histoire Naturelle, Série A, Zoologie', 3], ['Neotropical Ichthyology', 11], ['Pap. Avulsos Dep. Zool., São Paulo', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 3], ['Proceedings of the Zoological Society of London, B', 2], ['Raffles Bulletin of Zoology', 3], ['Zootaxa', 18], ['Other (13)', 15] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=85)', 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);