function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annale van die Suid-Afrikaanse Museum [Annals of the South African Museum]', 1], ['Bulletin de la Société Philomathique de Paris, Série 7', 1], ['Bulletin de la Société Zoologique de France', 1], ['Calcutta Journal of Natural History, and Miscellany of the Arts and Sciences in India', 1], ['Check List', 3], ['Madras Journal of Literature and Science', 1], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 5], ['Natuurkundige Verhandelingen van de Hollandsche Maatschappij der Wetenschappen te Haarlem, Series 3', 1], ['Proceedings of the Linnean Society of New South Wales', 2], ['Proceedings of the Zoological Society of London, B', 1], ['Report on the Scientific Results of the Voyage of H. M. S. “ Challenger ” during the Years 1873 - 76 under the Command of Captai', 1], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 1], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaftliche Classe. Abteilung 1, Mineralo', 1], ['Verhandlungen der Kaiserlich-Königlichen Zoologisch-Botanischen Gesellschaft in Wien', 1], ['Zootaxa', 7], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=29)', 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);