function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bulletin of the Los Angeles County Museum of Natural History Science', 4], ['Copeia', 6], ['European Journal of Taxonomy', 7], ['Fishery Bulletin', 1], ['Neotropical Ichthyology', 3], ['Proceedings of the United States National Museum, 3', 1], ['Records of the Australian Museum', 1], ['Report of the Fisheries and Marine Biological Survey, Union of South Africa', 1], ['Revue des Travaux de l\'Institut des Peches Maritimes', 1], ['Zootaxa', 11] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=36)', 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);