Python -- backgrounds for graphs

Hey,

I am trying to make a graph that has a background image. To add it, I used the info on plot.ly/python/images/ , could someone point me in the direction of more inclusive docs (that tells you what each parameter means in the image dict), because I cannot manage to make my image fit correctly inside the graph.

My image
What I managed to make with default params, only link changed from example in plot.ly/python/images

Thanks :smiley:

Here is a description of all keys for an image: https://plot.ly/python/reference/#layout-images.

The link you sent has a ton of info, it’s very helpful.

Thanks :smiley:

html{
height:100%;
width:100%;
background:url(./img/background.jpg) no-repeat center center;
background-size:cover;
background-attachment:fixed;
background-color:#000000;

}