function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['A Tenger: tudományos és társadalmi, tengerészeti és közgazdasági havi folyóirat: a Magyar Adria Egyesület közlönye', 1], ['Arkiv för Zoologi', 2], ['Bolletino della Societa geologica italiana', 2], ['Bulletin du Musée Royal d\'Histoire Naturelle de Belgique', 1], ['Bulletin du Muséum National d’Histoire Naturelle, Série 4, Section A, Zoologie, Biologie et Écologie d’Animal', 1], ['Bulletin of the United States National Museum', 4], ['Memoirs of the College of Science, Kyoto Imperial University, B', 2], ['New Zealand Oceanographic Institute Memoir', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 2], ['Ray Society', 9], ['ZooKeys', 15], ['Zoologischer Anzeiger', 3], ['Zoologiska Bidrag från Uppsala', 3], ['Zoosystematics and Evolution', 6], ['Zootaxa', 17], ['Other (11)', 11] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=81)', 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);