function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bijdragen tot de Flora van Nederlandsch Indie', 2], ['Biodiversity Data Journal', 2], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 1], ['Brittonia', 3], ['Check List', 1], ['Fossil Imprint', 1], ['Notizblatt des Königlichen Botanischen Gartens und Museums zu Berlin', 2], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 2], ['Order out of Chaos. Linnaean Plant Types and their Types', 3], ['Philippine Journal of Science C. Botany, Section C, Botany', 2], ['PhytoKeys', 1], ['Phytotaxa', 70], ['R. Hardwicke', 1], ['Reinwardtia', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=94)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);