Chart background colors - transparent?

Is it possible to make the plotly chart backgrounds transparent?

Hey, welcome to the community,

Yes it is possible, I found I have to set 2 properties in the layout section called paper bgcolor and plot bgcolor. They both default to #fff in plotly (ie it's not a "Retool thing")

e.g.
{ ... "paper_bgcolor": "transparent", "plot_bgcolor":"transparent", ... }

1 Like

That worked! Thank you!