MCPcopy Index your code
hub / github.com/plotly/plotly.py / crawl_fig

Method crawl_fig

plotly/matplotlylib/mplexporter/exporter.py:121–125  ·  view source on GitHub ↗

Crawl the figure and process all axes

(self, fig)

Source from the content-addressed store, hash-verified

119 return code
120
121 def crawl_fig(self, fig):
122 """Crawl the figure and process all axes"""
123 with self.renderer.draw_figure(fig=fig, props=utils.get_figure_properties(fig)):
124 for ax in fig.axes:
125 self.crawl_ax(ax)
126
127 def crawl_ax(self, ax):
128 """Crawl the axes and process all elements within"""

Callers 1

runMethod · 0.95

Calls 2

crawl_axMethod · 0.95
draw_figureMethod · 0.80

Tested by

no test coverage detected