function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Ann. Mag Natur. Hist.', 1], ['Annales de la Societe Entomologique de Belgique', 3], ['Biodiversity Data Journal', 4], ['Bulletin de la Societe Vaudoise des Sciences Naturelles', 4], ['Bulletin et Annales de la Societe Entomologique de Belge', 3], ['Bulletin of the American Museum of Natural History', 5], ['Deutsche Entomologische Zeitschrift', 2], ['Entomologische Mitteilungen', 1], ['Histoire Physique, Naturelle et Politique de Madagascar.', 2], ['Memoires de l\'Institut Francais d\'Afrique Noire', 10], ['Proceedings of the Royal Society of Victoria', 3], ['Reise in Ostafrika in den Jahren 1903 - 1905 mitteln der Hermann und Elise geb. Heckmann Wentzel-Stiftung ausgeführt von Profess', 1], ['Voyage de Ch. Alluaud et R. Jeannel en Afrique Orientale (1911 - 1912). Résultats scientifiques. Hyménoptères', 5], ['Zootaxa', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=47)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);