Reputation: 71
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
Upvotes: 7
Views: 5623
Reputation: 1
Please try put this in fig.update_layout
xaxis=dict(visible=False, showgrid=False, showline=False),
yaxis=dict(visible=False, showgrid=False, showline=False),
Upvotes: 0
Reputation: 186
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()
Upvotes: 4