I’m trying to align this Chart Title to the center of the polar chart (above the 180º label).
Here is my source-code:
let layout = {
title: {
text: graphs[0].title,
x: 0.5,
xanchor: 'center'
},
font: {
size: 20
},
showlegend: true,
polar: {
angularaxis: {
rotation: -90,
direction: "counterclockwise"
}
}
}
Please, could you help me?