We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As per the docs plot_background should inherit from rect.
plot_background
rect
However, the below code sample returns a plot with a white background, instead of an orange with dark blue border:
( sample + theme_none() + theme( rect=element_rect(fill="orange", color="dark_blue"), plot_background=element_rect(), ) )
The same happens with:
( sample + theme_none() + theme( rect=element_rect(fill="orange", color="dark_blue"), plot_background=None, ) )
Overwriting works as intended with the below sample returning a plot with a transparent background:
( sample + theme_none() + theme( rect=element_rect(fill="orange", color="dark_blue"), plot_background=element_blank(), ) )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As per the docs
plot_background
should inherit fromrect
.However, the below code sample returns a plot with a white background, instead of an orange with dark blue border:
The same happens with:
Overwriting works as intended with the below sample returning a plot with a transparent background:
The text was updated successfully, but these errors were encountered: