function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Amazoniana', 2], ['Anzeiger', 3], ['Bulletin of the Essex Institute', 4], ['Check List', 5], ['Copeia', 3], ['Memoirs of the Carnegie Museum', 5], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 3], ['Neotropical Ichthyology', 33], ['Pap. Avulsos Dep. Zool., São Paulo', 3], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 7], ['Proceedings of the American Philosophical Society', 3], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 6], ['ZooKeys', 8], ['Zoological Journal of the Linnean Society', 4], ['Zootaxa', 25], ['Other (32)', 42] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=156)', 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);