function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['A. F. Rose', 1], ['Archives du Museum National d\'Histoire Naturelle, 6', 1], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien', 1], ['European Journal of Taxonomy', 2], ['Hallageriis', 1], ['Journal of Natural History', 1], ['Laurentii Salvii', 1], ['Laurentius Salvius', 2], ['Memoirs of the California Academy of Sciences', 1], ['Records of the Zoological Survey of India', 1], ['Report on the Scientific Results of the Voyage of H. M. S. “ Challenger ” during the Years 1873 - 76 under the Command of Captai', 1], ['Schmerber', 1], ['Verhandlungen der Kaiserlich-Königlichen Zoologisch-Botanischen Gesellschaft in Wien', 1], ['Zootaxa', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=23)', 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);