function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Australian Journal of Zoology, Supplementary Series', 1], ['European Journal of Taxonomy', 3], ['Japanese Journal of Zoology', 1], ['Journal of Natural History', 35], ['Revue suisse de Zoologie', 1], ['Transactions of the Royal Society of New Zealand', 1], ['Tuhinga: records of the Museum of New Zealand Te Papa Tongarewa', 1], ['ZooKeys', 32], ['Zoologica Scripta', 14], ['Zoological Journal of the Linnean Society', 43], ['Zoological Science', 2], ['Zoosystematics and Evolution', 2], ['Zootaxa', 106] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=242)', 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);