function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals of the Lyceum of Natural History of New York', 1], ['Bulletin Zoologisch Museum van Amsterdam [Amsterdam Naturalist]', 2], ['Check List', 7], ['F. S. Hübschmann, Monachii [= Munich] & Fleischer, Lipsiae [= Leipzig]', 5], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 1], ['Neotropical Ichthyology', 15], ['Wolfgang Gerle', 1], ['Zoological Journal of the Linnean Society', 1], ['Zoosystema', 2], ['Zootaxa', 9] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=44)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);