Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Removing the white border around Plotly chart in Python

How can I remove the white margin/border around the figure?

import pandas as pd
import numpy as np
import plotly.express as px


df = pd.DataFrame(np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]),
                   columns=['a', 'b', 'c'])

fig = px.line(df, x=df.index, y=['a', 'b', 'c'], template='plotly_dark')
fig.show()

Tried without the templates, as well as removing margins, padding and backgrounds via

fig.update_layout(
    margin=dict(l=0,r=0,b=0,t=0),
    paper_bgcolor="Black"
    )

Screenshot showing the white border

like image 675
kharoufeh Avatar asked Aug 10 '26 13:08

kharoufeh


1 Answers

You already did it! In fact, I was looking for an answer to remove the whitespace borderlines in the plot, and your question taught me how to do that! I appreciate your work! In order to make your code work as you intended, you just need to update your layout before showing your figure(using fig.show()) as follows:

import pandas as pd
import numpy as np
import plotly.express as px


df = pd.DataFrame(np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]),
                   columns=['a', 'b', 'c'])

fig = px.line(df, x=df.index, y=['a', 'b', 'c'], template='plotly_dark')
## Put your layout updating here
fig.update_layout(
    margin=dict(l=0,r=0,b=0,t=0),
    paper_bgcolor="Black"
    )

fig.show()
like image 177
Ashkan Ranjbar Avatar answered Aug 12 '26 04:08

Ashkan Ranjbar