function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales des Sciences Naturelles: Comprenant la Physiologie Animale et Végétale, l\'Anatomie Comparée des deux Règnes, la Zoologie', 1], ['Biodiversity Data Journal', 33], ['Bulletin of the National Science Museum, Series A (Zoology)', 8], ['Journal of Natural History', 1], ['Records of the Australian Museum', 12], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 10], ['ZooKeys', 14], ['Zoological Journal of the Linnean Society', 16], ['Zootaxa', 102] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=197)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 9, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);