function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 1], ['Annales de la Société Impériale d\'Agriculture, Histoire Naturelle de Lyon', 1], ['Bijdragen tot de Dierkunde', 1], ['Biodiversity Data Journal', 11], ['Bronner', 1], ['Bulletin of the United States National Museum', 1], ['Check List', 2], ['Copeia', 3], ['Cybium', 1], ['Memoirs of the Queensland Museum', 2], ['Mölleri apud Heineck et Faber', 1], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 6], ['Occasional Papers of the Bernice P. Bishop Museum', 1], ['Records of the Zoological Survey of India', 1], ['Zootaxa', 29], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=65)', 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);