function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Baudouin, Imprimeur du Corps législatif et de l\'Institut national, place du Carrousel, N °. 662, an 6', 1], ['Fragmenta Faunistica', 8], ['Journal of Natural History', 2], ['Systematics and Biodiversity', 3], ['The Quekett Journal of Microscopy', 1], ['ZooKeys', 4], ['Zoological Journal of the Linnean Society', 3], ['Zoosystema', 1], ['Zootaxa', 38] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=61)', 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);