function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Amphibian & Reptile Conservation', 73], ['Evolutionary Systematics', 15], ['Geodiversitas', 4], ['Herpetozoa', 18], ['Journal of Natural History', 15], ['PaleoBios', 3], ['Papéis Avulsos de Zoologia', 3], ['Records of the Zoological Survey of India', 5], ['Subterranean Biology', 5], ['Vertebrate Zoology', 50], ['ZooKeys', 215], ['Zoological Journal of the Linnean Society', 14], ['Zoosystema', 5], ['Zoosystematics and Evolution', 10], ['Zootaxa', 188], ['Other (10)', 14] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=637)', 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);