AttributeDefaultAliasesTypeDescription
background_colorRGB{U8}(1.0,1.0,1.0)background, background_colour, bg, bg_color, bg_colour, bgcolor, bgcolourColor TypeBase color for all backgrounds.
background_color_outsidematchbackground_colour_outside, background_outside, bg_color_outside, bg_colour_outside, bg_outside, bgcolor_outside, bgcolour_outside, bgoutsideColor Type or `:match` (matches `:background_color`)Color outside the plot area(s)
foreground_colorautofg, fg_color, fg_colour, fgcolor, fgcolour, foreground, foreground_colourColor TypeBase color for all foregrounds.
html_output_formatautofmt, format, html_formatSymbolWhen writing html output, what is the format? `:png` and `:svg` are currently supported.
layout1Integer (number of subplots), NTuple{2,Integer} (grid dimensions), AbstractLayout (for example `grid(2,2)`), or the return from the `@layout` macroThis builds the layout of subplots.
linknoneSymbolHow/whether to link axis limits between subplots. Values: `:none`, `:x` (x axes are linked by columns), `:y` (y axes are linked by rows), `:both` (x and y are linked), `:all` (every subplot is linked together regardless of layout position).
overwrite_figuretrueclearfig, clf, overwrite, reuseBoolShould we reuse the same GUI window/figure when plotting (true) or open a new one (false).
plot_titleStringTitle for the whole plot (not the subplots) (Note: Not currently implemented)
pos(0,0)NTuple{2,Int}(left_px, top_px) position of the GUI window (note: currently unimplemented)
showfalsedisplay, guiBoolShould this command open/refresh a GUI/display? This allows displaying in scripts or functions without explicitly calling `display`
size(600,400)windowsize, wsizeNTuple{2,Int}(width_px, height_px) of the whole Plot
window_titlePlots.jlwindowtitle, wtitleStringTitle of the window.