function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Akademiia Nauk SSSR, Trudy P. P. Shirshov Instytut Okeanologii', 2], ['Bulletin de l\'Institut Océanographique de Monaco', 1], ['Bulletin of the Bingham Oceanographic Collection Yale University', 1], ['Copeia', 1], ['European Journal of Taxonomy', 7], ['Journal Imp. Fish. Inst. Tokyo', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 1], ['Report of the Fisheries and Marine Biological Survey, Union of South Africa', 1], ['Scientific Results of the M. Sars North Atlantic Deep-Sea Expedition 1910', 1], ['The Danish “', 4], ['Zootaxa', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=22)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);