function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales du Muséum d\'Histoire Naturelle, Paris', 2], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 1], ['Bulletin of Marine Science', 2], ['Cybium', 1], ['Déterville', 1], ['European Journal of Taxonomy', 2], ['Handl. Svenska Vet. Akad.', 1], ['Japanese Journal of Ichthyology', 1], ['Journal and Proceedings of the Asiatic Society of Bengal', 2], ['Journal of Natural History', 1], ['Laurentius Salvius', 4], ['Nodder & Company', 5], ['Proceedings of the United States National Museum, 3', 3], ['Zootaxa', 25], ['Öfversigt af Konglelige Vetenskaps-Akademiens Förhandlingar', 2], ['Other (8)', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=61)', 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);