function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Archiv für Naturgeschichte', 1], ['Bulletin du Muséum National d’Histoire Naturelle, Série 4, Section A, Zoologie, Biologie et Écologie d’Animal', 1], ['Bulletin of the National Science Museum, Series A (Zoology)', 1], ['Crustacean Research.', 3], ['Geodiversitas', 2], ['Journal of Natural History', 8], ['Proceedings of the Zoological Society of London', 1], ['Raffles Bulletin of Zoology', 82], ['S. V. Kul\'zhenko, 83 Malo-Zhitomirskaya Street.', 1], ['Species Diversity', 4], ['ZooKeys', 9], ['Zoological Journal of the Linnean Society', 3], ['Zoosystema', 20], ['Zootaxa', 202] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=338)', 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);