function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Beiträge Zur Entomologie = Contributions to Entomology', 2], ['Boletin Taxonómico-Ministerio de Agricultura y Cría. Laboratorio de Pesquería', 1], ['Bulletin of the British Museum (Natural History). Entomology', 1], ['Entomologist\'s monthly magazine', 1], ['Far Eastern Entomologist', 1], ['Fauna of New Zealand', 1], ['Insecta Mundi', 4], ['New Zealand journal of zoology', 1], ['Nota Lepidopterologica', 1], ['Proceedings of the Hawaiian Entomological Society', 1], ['Transactions and proceedings of the New Zealand Institute', 3], ['ZooKeys', 1], ['Zoological Journal of the Linnean Society', 8], ['Zootaxa', 11] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=38)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);