rc_configurator.update

rc_configurator.update(*args, **kwargs)[source]

Bulk updates settings, usage is similar to python dict objects.

Parameters
  • *args (str, dict, or (str, dict)) – Positional arguments can be a dictionary of rc settings and/or a “category” string name. If a category name is passed, all settings in the dictionary (if it was passed) and all keyword arg names (if they were passed) are prepended with the string cat + '.'. For example, rc.update('axes', labelsize=20, titlesize=20) changes the axes.labelsize and axes.titlesize properties.

  • **kwargsrc settings passed as keyword args.