function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Societe Entomologique de Belgique', 15], ['Annales de la Société Entomologique de France', 10], ['Berliner Entomologische Zeitschrift', 3], ['Biodiversity Data Journal', 2], ['Bulletin de la Societe Vaudoise des Sciences Naturelles', 8], ['Bulletin of the American Museum of Natural History', 3], ['Deutsche Entomologische Zeitschrift', 2], ['Entomologische Mitteilungen', 4], ['Histoire Physique, Naturelle et Politique de Madagascar.', 12], ['Histoire physique, naturelle et politique de Madagascar. 20.', 3], ['Journal of the Bombay Natural History Society', 7], ['Reise in Ostafrika in den Jahren 1903 - 1905 mitteln der Hermann und Elise geb. Heckmann Wentzel-Stiftung ausgeführt von Profess', 7], ['Transactions of the Entomological Society of London', 5], ['Verhandlungen der Zoologisch-Botanischen Gesellschaft in Wien', 8], ['Zootaxa', 24], ['Other (14)', 20] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=133)', 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);