function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['European Journal of Taxonomy', 26], ['Folia Parasitologica', 23], ['Proceedings of the Japanese Society of Systematic Zoology', 8], ['Raffles Bulletin of Zoology', 8], ['Records of the Australian Museum', 10], ['Report of the United States Commissioner of Fish and Fisheries', 9], ['Revue suisse de Zoologie', 12], ['Species Diversity', 11], ['Systematic Parasitology', 11], ['Vestnik Zoologii', 10], ['ZooKeys', 66], ['Zoological Journal of the Linnean Society', 11], ['Zoological Science', 19], ['Zoosystema', 40], ['Zootaxa', 373], ['Other (35)', 76] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=713)', 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);