function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bulletin of the Museum of Comparative Zoology at Harvard College', 2], ['Byulleten Moskovskogo Obshchestva Ispytatelei Prirody Otdel Biologicheskii [Bull. Moscow Soc. Naturalists Biol. Ser.], otdel\' bi', 1], ['Cybium', 1], ['E. J. Brill', 1], ['European Journal of Taxonomy', 1], ['Investigacion Pesquera', 1], ['Marine Investigations in South Africa', 2], ['Masson', 1], ['Mitt. Zool. Jb., Syst.', 1], ['Proceedings of the United States National Museum, 3', 1], ['Zootaxa', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=15)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);