matplotlib.pyplot.setp#

matplotlib.pyplot.setp(obj,*args,**kwargs)[source]#

Set one or more properties on anArtist, or list allowed values.

Parameters:
objArtist or list ofArtist

The artist(s) whose properties are being set or queried. When settingproperties, all artists are affected; when querying the allowed values,only the first instance in the sequence is queried.

For example, two lines can be made thicker and red with a single call:

>>>x=arange(0,1,0.01)>>>lines=plot(x,sin(2*pi*x),x,sin(4*pi*x))>>>setp(lines,linewidth=2,color='r')
filefile-like, default:sys.stdout

Wheresetp writes its output when asked to list allowed values.

>>>withopen('output.log')asfile:...setp(line,file=file)

The default,None, meanssys.stdout.

*args, **kwargs

The properties to set. The following combinations are supported:

  • Set the linestyle of a line to be dashed:

    >>>line,=plot([1,2,3])>>>setp(line,linestyle='--')
  • Set multiple properties at once:

    >>>setp(line,linewidth=2,color='r')
  • List allowed values for a line's linestyle:

    >>>setp(line,'linestyle')linestyle: {'-', '--', '-.', ':', '', (offset, on-off-seq), ...}
  • List all properties that can be set, and their allowed values:

    >>>setp(line)agg_filter: a filter function, ...[long output listing omitted]

setp also supports MATLAB style string/value pairs. For example, thefollowing are equivalent:

>>>setp(lines,'linewidth',2,'color','r')# MATLAB style>>>setp(lines,linewidth=2,color='r')# Python style

See also

getp

Notes

Note

This is equivalent tomatplotlib.artist.setp.

Examples usingmatplotlib.pyplot.setp#

Patheffect Demo

Patheffect Demo

Set and get properties

Set and get properties

A pie and a donut with labels

A pie and a donut with labels

Topographic hillshading

Topographic hillshading

Boxplots

Boxplots

The Lifecycle of a Plot

The Lifecycle of a Plot