function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Australian zoologist', 1], ['Bulletin de la Société Zoologique de France', 1], ['Bulletin of the American Museum of Natural History', 2], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 1], ['Bulletin of the United States National Museum', 1], ['European Journal of Taxonomy', 4], ['Geological Survey of Canada Contributions to Canadian Palaeontology', 1], ['Giornale di Fisica, Chimica e Storia Naturale, Medicina ed Arti, Pavia, ed Arti Pavia', 1], ['Journal of Natural History', 4], ['Marine Biodiversity', 4], ['Proceedings of the Zoological Society of London, B', 2], ['Records of the Australian Museum', 2], ['Veit', 3], ['Zoological Journal of the Linnean Society', 9], ['Zootaxa', 100], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=139)', 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);