function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Dursun, Ahmet & Fent, Meral', 4], ['Golub, Victor B. & Luo, Zhaohui & Vinokurov, Nikolai N.', 3], ['Guilbert, Eric', 7], ['Guilbert, Eric & Guidoti, Marcus', 3], ['Heiss, Ernst & Eckelt, Andreas & Lederwasch, Manfred', 12], ['Krüger, Andreas & Deckert, Jürgen', 1], ['Linnavuori, Rauno E.', 2], ['Montemayor, I. & Linnavuori, E.', 6], ['Souma, Jun', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=43)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 9, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);