function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Buys, Sandor Christiano', 1], ['Danilov, Yuriy N.', 2], ['Epeletier', 10], ['Fabricius, Johann Christian', 2], ['Gadallah, Neveen S.', 7], ['H, Phong & G, P. & N, Yuriy', 1], ['Jahantigh, Fatemeh & Rakhshani, Ehsan & Mokhtari, Azizollah', 5], ['Khedher, Hassib Ben & Yildirim, Erol & Braham, Mohamed', 1], ['Madl, Michael', 1], ['Madl, Michael & D, Chalybion & L, Chlorion & S, Podalonia', 2], ['Walker, Francis', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=33)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);