function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abhandlungen der Böhmischen. Gesellschaft der Wissenschaften', 4], ['Biodiversity Data Journal', 23], ['Bulletin of the United States Fish Commission', 10], ['Bulletin of the United States National Museum', 3], ['Copeia', 3], ['Ichthyological Bulletin of the J. L. B. Smith Institute of Ichthyology', 9], ['Journal of Natural History', 3], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 8], ['Privately published', 8], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 4], ['Proceedings of the Linnean Society of New South Wales', 6], ['Proceedings of the United States National Museum, 3', 10], ['Publications of the Field Museum of Natural History, Zoölogical', 3], ['Verslagen en Mededeelingen der Koninklijke Akademie van Wetenschappen. Afdeeling Natuurkunde', 8], ['Zootaxa', 75], ['Other (40)', 55] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=232)', 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);