function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales des Sciences Naturelles, Zoologie, Série 5', 1], ['Bulletin of the American Museum of Natural History', 1], ['Bulletin of the Fan Memorial Institute of Biology', 1], ['Contr. Biol. Lab. Sci. Soc. China, Zool. Ser.', 5], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien', 2], ['Ha Noi, Scientific & Technology', 1], ['Jahreshefte des Vereins für Vaterländische Naturkunde in Württemberg', 1], ['Mitteilungen aus dem Naturhistorischen Museum in Hamburg', 1], ['Proceedings of the Zoological Society of London, B', 1], ['Zootaxa', 14] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=28)', 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);