I use the matplotlibs ggplot style to build and want to override only certain standard options, such as xticklabels color, grid background color and line width.
import numpy as np import pandas as pd import matplotlib
returns: 
I know that I can set single properties for object axes like this:
ax.set_axis_bgcolor('red')
But how can I override the default properties (e.g. label color, background color and line width so that they are in all graphs?
Thanks in advance!
source share