function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annalen des Naturhistorischen Museums in Wien, Serie A Mineralogie und Petrographie Geologie und Palaeontologie Anthropologie un', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College', 53], ['Bulletin of the National Science Museum, Series A (Zoology)', 1], ['Deterville', 1], ['European Journal of Taxonomy', 2], ['Raffles Bulletin of Zoology', 5], ['Revista Brasileira de Zoologia', 2], ['Species Diversity', 1], ['Zoological Journal of the Linnean Society', 1], ['Zootaxa', 64] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=131)', 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);