7

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

2 Answers 2

4

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()
Sign up to request clarification or add additional context in comments.

Comments

0

Please try put this in fig.update_layout

xaxis=dict(visible=False, showgrid=False, showline=False), 
yaxis=dict(visible=False, showgrid=False, showline=False),

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.