function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bächli, Gerhard & Merz, Bernhard & Haenni, Jean-Paul', 1], ['Gilasian, Ebrahim & Vujić, Ante & Hauser, Martin', 1], ['Kočić, Anja & Vujić, Ante & Tot, Tamara', 4], ['Li, Hu & Huo, Ke-Ke & Li, Bao-Guo', 4], ['MAZáNEK, Libor & VONIČKA, Pavel & PREISLER, JiřÍ', 2], ['Mutin, V. A.', 1], ['Mutin, V. A. & Barkalov, A. V.', 2], ['Prokhorov, A. V. & Popov, G. V. & Shparyk, V. Yu.', 1], ['Prokhorov, A. V. & Popov, G. V. & Zaika, M. I.', 1], ['Pétremand, Gaël & Speight, Martin C. D. & Castella, Emmanuel', 3], ['Ricarte, Antonio & Rotheray, Graham E. & Lyszkowski, Richard M.', 2], ['Speight, Martin C. D. & Pétremand, Gaël & Castella, Emmanuel', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=24)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);