function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Parasitologica', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Annotationes Zoologicae Japonenses', 1], ['Biodiversity Data Journal', 1], ['Fujian Shida Xuebao', 1], ['Japanese Journal of Zoology', 1], ['Keizyo Journal of Medicine', 1], ['Lingnan Science Journal', 1], ['Research Bulletin of the Panjab University of Science (Zoology)', 1], ['Systematic Parasitology', 1], ['Transactions of the American Microscopical Society', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=11)', 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);