function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Société Entomologique de France, Séries 1 - 6', 5], ['Annali del Museo Civico di Storia Naturale de Genova, 3 a', 1], ['Annali del Museo Civico di Storia Naturale di Genova', 2], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 2], ['Bauer und Raspe', 2], ['Bulletin de la Société Entomologique de France', 1], ['Bulletin de la Société Zoologique de France', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College.', 1], ['Canadian Entomologist', 3], ['Memorias de la Real Academia de Ciencias y Artes de Barcelona', 1], ['Mitteilungen aus dem Zoologischen Museum in Berlin', 2], ['Privately published', 5], ['Természetrajzi Füzetek', 2], ['The Journal of the Linnean Society of London, Zoology', 2], ['Zootaxa', 3], ['Other (6)', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=39)', 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);