function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Anales del Instituto de Biología, Universidad Nacional Autónoma de México (Series Zoología)', 1], ['Arctic', 2], ['Beaufortia', 1], ['Bulletin de l\'Institut Royal des Sciences Naturelles de Belgique, Biologie', 4], ['Bulletin of Marine Science', 5], ['Contributions to Zoology', 3], ['Crustaceana', 3], ['European Journal of Taxonomy', 3], ['Journal of Natural History', 27], ['Journal of crustacean biology', 3], ['Journal of the Marine Biological Association', 3], ['Proceedings of the Biological Society of Washington', 2], ['ZooKeys', 3], ['Zoological Journal of the Linnean Society', 2], ['Zootaxa', 55], ['Other (8)', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=125)', 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);