function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 3], ['Journal of Natural History', 13], ['Laurentius Salvius', 5], ['Memoirs of Museum Victoria', 2], ['Proceedings of the Zoological Society of London', 2], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 9], ['Species Diversity', 1], ['Turici', 8], ['Zeitschrift für Wissenschaftliche Zoologie', 6], ['ZooKeys', 4], ['Zoologica', 1], ['Zoological Journal of the Linnean Society', 4], ['Zoosystema', 1], ['Zootaxa', 75] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=134)', 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);