function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Société Impériale d\'Agriculture, Histoire Naturelle de Lyon', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Anzeiger', 1], ['Australian zoologist', 3], ['Biodiversity Data Journal', 10], ['Bronner', 1], ['Bulletin of the United States Bureau of Fisheries', 1], ['E. J. Brill', 2], ['Journal and Proceedings of the Asiatic Society of Bengal', 1], ['Journal of South Asian Natural History', 1], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 5], ['Proc. K. Ned. Akad. Wet., C, Zool.', 2], ['The Beagle. Records of the Museums and Art Galleries of the Northern Territory', 4], ['Verhandelingen van het Bataviaasch Genootschap van Kunsten en Wetenschappen', 2], ['Zootaxa', 52], ['Other (14)', 14] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=101)', 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);