function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abhandlungen der Königlichen Akademie der Wissenschaften zu Berlin', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Baudouin, Imprimeur du Corps législatif et de l\'Institut national, place du Carrousel, N °. 662, an 6', 1], ['Biodiversity Data Journal', 4], ['Bulletin of the United States National Museum', 1], ['Geodiversitas', 9], ['Papers of the Department of Marine Biology, Carnegie Institute, Washington', 4], ['Proceedings of the Essex Institute (Communications)', 1], ['Records of the Western Australian Museum', 2], ['Scientific Report Great Barrier Reef Expedition 1928 - 29', 3], ['Zootaxa', 27] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=54)', 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);