function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bulletin de la Société Philomathique de Paris, Série 7', 1], ['Check List', 1], ['Journal and Proceedings of the Asiatic Society of Bengal', 2], ['Lingnan Science Journal', 1], ['Mem. Mus. Bocage, Lisboa', 1], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 1], ['Philippine Journal of Science, Section D', 2], ['Proceedings of the Zoological Society of London, B', 2], ['Report of the British Association for the Advancement of Science', 2], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 1], ['Verhandelingen van het Bataviaasch Genootschap van Kunsten en Wetenschappen', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=17)', 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);