function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annalen des Naturhistorischen Museums in Wien', 2], ['Bulletin de la Société Zoologique de France', 1], ['Eos, Madrid', 1], ['Mitteilungen aus dem Zoologischen Museum in Berlin', 2], ['Mémoires du Muséum National d’Histoire Naturelle', 4], ['Occasional Papers of the Bernice P. Bishop Museum', 1], ['Travaux de l\'Institute de Zoologique de l\'Académie Sciences de l\'U. R. S. S.', 1], ['Zootaxa', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=14)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 8, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);