function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bulletin du Musée Royal d\'Histoire Naturelle de Belgique', 1], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 1], ['Ichthyological Exploration of Freshwaters', 1], ['Mitteilungen aus dem Hamburgischen Zoologischen Museum und Institut', 1], ['Novitates Zoologicae', 1], ['Publicacoes Culturais da Companhia de Diamantes Angola', 1], ['Revue Zoologique Africaine', 2], ['Verhandlungen der Kaiserlich-Königlichen Zoologisch-Botanischen Gesellschaft in Wien', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=9)', 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);