function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Australian zoologist', 3], ['Biodiversity Data Journal', 4], ['Cybium', 11], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien', 2], ['European Journal of Taxonomy', 2], ['F. G. Levrault', 8], ['Journal of Natural History', 2], ['Laurentius Salvius', 4], ['Natuurkunde Tijdschrift voor Nederlandsche-Indiƫ', 2], ['Privately published', 7], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 4], ['Proceedings of the Linnean Society of New South Wales', 3], ['Proceedings of the United States National Museum, 3', 5], ['Proceedings of the Zoological Society of London, B', 2], ['Zootaxa', 74], ['Other (27)', 30] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=163)', 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);