function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Anzeiger', 1], ['Arquivos do Museu Nacional Rio de Janeiro', 2], ['Bol. Biol. Sao Paulo', 1], ['Copeia', 1], ['Ind. Univ. Studies', 1], ['Kosmos, Rio de Janeiro [Rev. Art. Sci. Litt.]', 2], ['Neotropical Ichthyology', 6], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 3], ['Proceedings of the American Philosophical Society', 2], ['Proceedings of the Zoological Society of London, B', 1], ['Rev. Mus. Paulista', 1], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 1], ['University of Kentucky', 1], ['Zootaxa', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=24)', 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);