rcatool.plot.plots.axes_settings

rcatool.plot.plots.axes_settings(ax, figtitle=None, xlabel=None, ylabel=None, xtlabels=None, ytlabels=None, xticks=None, yticks=None, xlim=None, ylim=None, color='k', fontsize='xx-large', fontsize_lbls='xx-large', fontsize_title='xx-large', ftitle_location='center')[source]

Configuration of axes; titles and labels

Parameters:
  • ax (axes object) – Axes object assoicated with figure

  • figtitle (string) – The headtitle

  • xlabel (strings) – Labels of the axes

  • ylabel (strings) – Labels of the axes

  • xticks (lists or arrays) – If set, location of ticks

  • yticks (lists or arrays) – If set, location of ticks

  • xtlabels (lists) – Contains tick labels (corresponding to ticks location)

  • ytlabels (lists) – Contains tick labels (corresponding to ticks location)

  • xlim (lists) – Limits of the axes

  • ylim (lists) – Limits of the axes

  • color (str) – Color for the xtick labels

  • fontsize/fontsize_lbls/fontsize_title (string or int) – Size of font for axes labels, ticklabels, and figure title respectively

  • ftitle_location (str) – Horizontal alignment of figure title; center (default), right or left.