function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Birkhaeuser Verlag', 2], ['F. S. Hübschmann, Monachii [= Munich] & Fleischer, Lipsiae [= Leipzig]', 1], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 2], ['Neotropical Ichthyology', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 1], ['Revue française d\'Aquariologie Herpétologie', 1], ['Videnskabelige Meddelelser frå Dansk Naturhistorisk Forening', 1], ['Zoosystema', 1], ['Zootaxa', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=18)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 9, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);