function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Aqua, Journal of Ichthyology and Aquatic Biology', 4], ['Biodiversity Data Journal', 3], ['Bulletin of the British Museum (Natural History), Zoology Series', 4], ['Fauna of Saudi Arabia', 2], ['Ichthyological Bulletin of the J. L. B. Smith Institute of Ichthyology', 1], ['Ichthyological Research', 2], ['Journal of Natural History', 3], ['Raffles Bulletin of Zoology', 2], ['Records of the Indian Museum', 1], ['Revue française d\'Aquariologie Herpétologie', 1], ['Zootaxa', 15] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=38)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);