function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 7], ['Birkhaeuser Verlag', 14], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 14], ['Flora Helvetica', 20], ['Flora Medica', 5], ['Flora Nordica', 62], ['Flora de Cabo Verde', 4], ['Flora of Tropical East Africa', 12], ['Info Flora Schweiz', 22], ['Laurentius Salvius', 23], ['Les îles Canaries. Flore de l\'archipel', 6], ['Order out of Chaos. Linnaean Plant Types and their Types', 19], ['PhytoKeys', 14], ['Phytotaxa', 5], ['Transactions of the Natural History Society of Northumberland, Durham, and Newcastle-upon-Tyne', 13], ['Other (16)', 24] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=264)', 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);