function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Société Impériale d\'Agriculture, Histoire Naturelle de Lyon', 1], ['Bulletin de la Société Zoologique de France', 1], ['Bulletin of the United States Bureau of Fisheries', 1], ['Bulletin of the United States Fish Commission', 2], ['D. Carlisle', 1], ['European Journal of Taxonomy', 4], ['F. S. Hübschmann, Monachii [= Munich] & Fleischer, Lipsiae [= Leipzig]', 2], ['F. Schoell', 3], ['Laurentius Salvius', 2], ['Mölleri apud Heineck et Faber', 2], ['Proceedings of the United States National Museum, 3', 3], ['Sanfilippo', 2], ['The Journal of the Indian Archipelago and Eastern Asia', 2], ['Verhandelingen van het Bataviaasch Genootschap van Kunsten en Wetenschappen', 2], ['Zootaxa', 6], ['Other (20)', 20] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=54)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);