function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Société Entomologique de France, Séries 1 - 6', 3], ['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 ', 20], ['Annals of the Durban Museum', 2], ['Annals of the Natal Museum', 2], ['Annals of the South African Museum', 12], ['Annals of the Transvaal Museum', 4], ['Archiv für Naturgeschichte', 10], ['L\'Institute, Journal Général des Sociétés et Travaux Scientifiques de la France et de l\'Étranger', 2], ['L. Friederischen & Co.', 2], ['Mitteilungen aus dem Naturhistorischen Museum in Hamburg', 10], ['Novitates zoologicae', 2], ['Proceedings of the Zoological Society of London', 3], ['Schniebes', 3], ['Zootaxa', 10], ['Other (10)', 11] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=98)', 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);