function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals of the Carnegie Museum', 7], ['Boletim do Museu Nacional Rio de Janeiro, Zoologia', 2], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 2], ['Can. J. Zool', 5], ['Check List', 8], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien', 2], ['Ichthyological Exploration of Freshwaters', 9], ['Ichthyology & Herpetology', 5], ['Ind. Univ. Studies', 3], ['Journal of Fish Biology', 2], ['Neotropical Ichthyology', 16], ['ZooKeys', 4], ['Zoological Journal of the Linnean Society', 4], ['Zoologische Abhandlungen des Staatlichen Museums für Tierkunde, Dresden', 4], ['Zootaxa', 25], ['Other (14)', 17] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=115)', 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);