region_chart = {
c3.generate({
bindto: '#regions-chart',
data: {
columns: [
["Latin America and Caribbean", 25],
["Sub-Saharan Africa", 23],
["Europe and Central Asia", 16],
["South Asia", 12],
["East Asia and the Pacific", 14],
["Middle East and North Africa", 8],
["World", 2], ],
type: 'donut'
},
donut: {
title: "Cases by Region"
}
});
var label = d3.select('text.c3-chart-arcs-title');
}