function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annalen des Naturhistorischen Museums in Wien', 6], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 10], ['Biodiversity Data Journal', 7], ['Bulletin of the Institute of Jamaica, Science Series', 10], ['Canadian Entomologist', 7], ['Glasnik Skopskog Naucnog Drustva', 7], ['Invertebrate systematics', 8], ['Journal of Arachnology', 10], ['Mémoires du Muséum National d’Histoire Naturelle', 6], ['Records of the Western Australian Museum', 7], ['Studien aus dem Gebiete der Allgemeinen Karstforschung, der Wissenschaftlichen Höhlenkunde, der Eiszeitforschung und den Nachbar', 18], ['Texas Memorial Museum, Speleological Monographs', 7], ['ZooKeys', 24], ['Zoologischer Anzeiger', 10], ['Zootaxa', 341], ['Other (86)', 177] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=655)', 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);