function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals of the Carnegie Museum', 1], ['Anzeiger', 3], ['Aquaristik Aktuell', 1], ['Bijdragen tot de Dierkunde', 1], ['Biodiversity Data Journal', 4], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien', 4], ['Ichthyological Exploration of Freshwaters', 5], ['Ind. Univ. Studies', 3], ['Neotropical Ichthyol.', 2], ['Neotropical Ichthyology', 9], ['Notulae Naturae', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 3], ['Revue suisse de zoologie', 3], ['Tropical Fish Hobbyist', 2], ['Zootaxa', 40], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=88)', 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);