function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Arachnologische Mitteilungen', 3], ['Biodiversity Data Journal', 30], ['Caucasian Entomological Bulletin', 4], ['European Journal of Taxonomy', 6], ['Far Eastern Entomologist', 1], ['Indian Journal of Arachnology', 1], ['Journal of Natural History', 21], ['Records of the Dominion Museum', 2], ['State Fauna Series 4 Fauna of Meghalaya Part 2', 5], ['UPLB Museum Publications in Natural History', 1], ['Veröffentlichungen des Tiroler Landesmuseums Ferdinandeum', 2], ['ZooKeys', 11], ['Zoosystema', 6], ['Zootaxa', 43] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=136)', 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);