function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bulletin of the National Science Museum, Series A (Zoology)', 7], ['European Journal of Taxonomy', 4], ['Journal of Natural History', 15], ['Raffles Bulletin of Zoology', 26], ['Records of the Zoological Survey of India', 1], ['Senckenbergiana Biologica', 2], ['ZooKeys', 12], ['Zoological Journal of the Linnean Society', 1], ['Zoological Science', 1], ['Zoological studies', 10], ['Zoosystema', 10], ['Zoosystematics and Evolution', 1], ['Zootaxa', 56] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=146)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);