function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 3], ['Ichthyological Bulletin of the J. L. B. Smith Institute of Ichthyology', 1], ['Israel Journal of Zoology', 1], ['Notulae Naturae', 1], ['Proceedings of the United States National Museum, 3', 4], ['Records of the Australian Museum', 2], ['Revue française d\'Aquariologie Herpétologie', 1], ['Senckenbergiana Biologica', 1], ['Smithsonian Contributions to Zoology', 27], ['Zootaxa', 41] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=82)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);