function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bulletin de la Société Philomathique de Paris, Série 7', 1], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 1], ['Mémoires de la Societe de Physique et d\'Histoire Naturelle de Genève', 1], ['Nederlandsch Tijdschrift voor de Dierkunde', 1], ['Proceedings of the California Academy of Sciences, Series 1', 1], ['Proceedings of the California Academy of Sciences, Series 2', 1], ['Proceedings of the Linnean Society of New South Wales', 1], ['Proceedings of the Zoological Society of London, B', 1], ['e. g. v. 15 in 1931. No city listed.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=9)', 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);