function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Benjamin White and Son', 2], ['Bolletino della Societa geologica italiana', 2], ['British Museum (Natural History)', 3], ['Bulletin -- United States National Museum', 2], ['Bulletin du Muséum National d’Histoire Naturelle, [Série 1]', 4], ['Bulletin of the United States Bureau of Fisheries', 2], ['Laurentius Salvius', 6], ['Memoirs of the Asiatic Society of Bengal', 2], ['Proceedings of the United States National Museum', 2], ['Ray Society', 2], ['Skrivter af Naturhistorie-Selskabet', 2], ['ZooKeys', 4], ['Zoological Journal of the Linnean Society', 4], ['Zootaxa', 3], ['Other (9)', 9] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=50)', 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);