function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Société Entomologique de France, Séries 1 - 6', 1], ['Biodiversity Data Journal', 2], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 5], ['Check List', 16], ['Journal of the Arnold Arboretum', 4], ['Kew Bulletin', 7], ['Laurentius Salvius', 1], ['Linnaea: Ein Journal für die Botanik in ihrem ganzen Umfange', 1], ['Nordic Journal of Botany', 1], ['Notizblatt des Botanischen Gartens und Museums zu Berlin-Dahlem', 7], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 1], ['Phytotaxa', 26], ['Repertorium Specierum Novarum Regni Vegetabilis', 6], ['Taylor & Francis', 3], ['Transactions of the Linnean Society of London, Second Series. Botany', 2], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=85)', 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);