function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 24], ['Caucasian Entomological Bulletin', 1], ['Far Eastern Entomologist', 1], ['Journal of Natural History', 2], ['Proceedings of the California Academy of Sciences, Series 3, Zoology', 1], ['Verhandlungen der Zoologisch-Botanischen Gesellschaft in Wien', 1], ['Veröffentlichungen des Tiroler Landesmuseums Ferdinandeum', 1], ['ZooKeys', 16], ['Zoodiversity', 1], ['Zoosystema', 6], ['Zootaxa', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=55)', 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);