function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Handbook of the Mammals of the World – Volume 6 Lagomorphs and Rodents I', 69], ['Historia Natural (Corrientes)', 1], ['Mammal Species of the World (1 st Edition)', 34], ['Mammal Species of the World (2 nd Edition)', 39], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 2', 75], ['Mammalia', 4], ['Mammalian Biology (Zeitschrift für Säugetierkunde)', 1], ['Studies on Neotropical Fauna and Environment', 1], ['Vertebrate Zoology', 4], ['Zoological Journal of the Linnean Society', 1], ['Zoologischer Anzeiger', 3], ['Zootaxa', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=233)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);