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], ['Arachnologische Mitteilungen', 3], ['Beiträge zur Araneologie', 3], ['Biodiversity Data Journal', 12], ['Caucasian Entomological Bulletin', 2], ['Caucasiana', 1], ['Far Eastern Entomologist', 1], ['Indian Journal of Arachnology', 1], ['Journal of Natural History', 16], ['Otago Museum Trust Board', 1], ['Records of the Dominion Museum', 2], ['Veröffentlichungen des Tiroler Landesmuseums Ferdinandeum', 2], ['ZooKeys', 12], ['Zoosystema', 6], ['Zootaxa', 159], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=224)', 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);