function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abhandlungen der Senckenbergischen Naturforschenden Gesellschaft', 1], ['Benham and Leeve', 6], ['Bulletin of the National Museum of Nature and Science, Series A (Zoology)', 2], ['Bulletin of the National Science Museum, Series A (Zoology)', 1], ['C. E. Bohn', 1], ['Geodiversitas', 2], ['S. V. Kul\'zhenko, 83 Malo-Zhitomirskaya Street.', 1], ['ZooKeys', 3], ['Zoological Journal of the Linnean Society', 1], ['Zootaxa', 74] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=92)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);