function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annalen des Naturhistorischen Museums in Wien', 19], ['Annales de la Societe Entomologique de Belgique', 28], ['Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances', 4], ['Annali del Museo Civico di Storia Naturale Giacomo Doria (Genova)', 5], ['Berliner Entomologische Zeitschrift', 5], ['Bulletin de la Societe Vaudoise des Sciences Naturelles', 5], ['Deutsche Entomologische Zeitschrift', 8], ['Entomologische Mitteilungen', 3], ['Histoire Physique, Naturelle et Politique de Madagascar.', 18], ['Histoire physique, naturelle et politique de Madagascar. 20.', 2], ['Mitteilungen der Schweizerischen Entomologischen Gesellschaft', 15], ['Reise in Ostafrika in den Jahren 1903 - 1905 mitteln der Hermann und Elise geb. Heckmann Wentzel-Stiftung ausgeführt von Profess', 17], ['Transactions of the Entomological Society of London', 4], ['Verhandlungen der Zoologisch-Botanischen Gesellschaft in Wien', 19], ['Voyage de Ch. Alluaud et R. Jeannel en Afrique Orientale (1911 - 1912). Résultats scientifiques. Hyménoptères', 27], ['Other (4)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=184)', 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);