Am using the same code as mentioned in forum for radar chart.
However the colors are predefined. Kindly suggest how to change colors in radar chart.
Regards,
Amit
Am using the same code as mentioned in forum for radar chart.
However the colors are predefined. Kindly suggest how to change colors in radar chart.
Regards,
Amit
But the background color is still white in my code.
used bgcolor
Python radar chart layout
return go.Layout(
polar = dict(
bgcolor=β#1e2130β
),
title = βMyRadarβ,
paper_bgcolor=β#1e2130β
)
It appears that in plotly.js you need to put it in
layout: {
polar: {
bgcolor: 'chartreuse'
}
}
Is there a reason we canβt just use the plot_bgcolor
attribute?