function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Archiv für Molluskenkunde', 9], ['Biodiversity Data Journal', 3], ['Conchylia', 1], ['European Journal of Taxonomy', 17], ['Geodiversitas', 2], ['Journal of Natural History', 2], ['Ruthenica, Russian Malacological Journal', 1], ['Strombus', 1], ['U. S. Geological Survey, Professional Paper', 1], ['Visaya', 4], ['Zoological Journal of the Linnean Society', 1], ['Zoosystematics and Evolution', 2], ['Zootaxa', 99], ['de l\'Autuer', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=144)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);