function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Borowski, Jerzy & SÅ‚awski, Marek', 1], ['Conte, John L. Le', 1], ['Fabricius, Johann Christian', 2], ['Lesne, P.', 1], ['Liu, L. Y. & Beaver, R. A. & Yang, J. T.', 1], ['Liu, Lan-Yu', 7], ['Majka, Christopher G.', 3], ['Mitter, Heinz & A, Upper', 1], ['Montrouzier, Reverend Pere', 1], ['Nardi, Gianluca & Mifsud, David', 1], ['Webster, Reginald P. & Webster, Vincent L.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=20)', 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);