function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Frolov, Andrey', 1], ['Frolov, Andrey V.', 6], ['Frolov, Andrey V. & Akhmetova, Lilia A. & Vishnevskaya, Maria S.', 2], ['Frolov, Andrey V. & Montreuil, Olivier & Akhmetova, Lilia A.', 21], ['Frolov, Andrey V. & Smith, Andrew B. T. & Akhmetova, Lilia A.', 2], ['details, Publication & authors, including instructions for', 13] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=45)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 6, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);