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], ['Antarctic Sci.', 1], ['BMC Biology', 2], ['Baudouin, Imprimeur du Corps législatif et de l\'Institut national, place du Carrousel, N °. 662, an 6', 1], ['Biodiversity Data Journal', 7], ['Caucasian Entomological Bulletin', 2], ['Journal of Natural History', 8], ['Journal of the Faculty of Fisheries and Animal Husbandry, Hiroshima University', 5], ['Laurentius Salvius', 3], ['Marine Biodiversity', 2], ['Molluscan Research', 7], ['NIWA', 16], ['Zoological Journal of the Linnean Society', 3], ['Zoological Science', 2], ['Zootaxa', 19], ['Other (8)', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=87)', 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);