function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['DeFilipps, Robert A. & Krupnick, Gary A.', 3], ['Gowda, Vinita & Kress, W. John & Htun, Thet', 1], ['Jarvis, Charlie', 1], ['Leong-Skornickova, Jana & Soonthornkalump, Sutthinut', 2], ['Leong-Škorničková, J. & Trư ờng, Lưu H ồng', 1], ['Linnaeus, Carolus', 2], ['Mille, Christian & Henderson, Rosa C. & Cazères, Sylvie', 1], ['Smith, Johannes Jacobus', 1], ['Valeton, Theodoric', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=15)', 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);