function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Archiv für Molluskenkunde', 4], ['European Journal of Taxonomy', 6], ['Johan. Christi. Trappii', 17], ['Journal of Great Lakes Research', 13], ['Journal of the Academy of Natural Sciences of Philadelphia', 31], ['K. K. Hof-naturalien-cabinet', 6], ['Laurentius Salvius', 109], ['Malacologia', 5], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 55], ['Schultz', 11], ['Transactions of the geological society of London, 2', 8], ['U. S. Geological Survey, Professional Paper', 9], ['ZooKeys', 6], ['Zoosystema', 11], ['Zootaxa', 87], ['Other (43)', 73] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=451)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);