function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Copeia', 2], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien', 1], ['F. S. Hübschmann, Monachii [= Munich] & Fleischer, Lipsiae [= Leipzig]', 1], ['Ind. Univ. Studies', 2], ['Mémoires du Musée Royal d\'Histoire Naturelle de Belgique, Série 2', 1], ['Neotropical Ichthyology', 41], ['Novedades Colombianas', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 2], ['Proceedings of the Biological Society of Washington', 1], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 1], ['Smithsonian Contributions to Zoology', 1], ['Zoological Journal of the Linnean Society', 8], ['Zoosystema', 2], ['Zootaxa', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=69)', 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);