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

Method pattern

plotly/graph_objs/layout/_grid.py:70–87  ·  view source on GitHub ↗

If no `subplots`, `xaxes`, or `yaxes` are given but we do have `rows` and `columns`, we can generate defaults using consecutive axis IDs, in two ways: "coupled" gives one x axis per column and one y axis per row. "independent" uses a new xy pair for each cell

(self)

Source from the content-addressed store, hash-verified

68
69 @property
70 def pattern(self):
71 """
72 If no `subplots`, `xaxes`, or `yaxes` are given but we do have
73 `rows` and `columns`, we can generate defaults using
74 consecutive axis IDs, in two ways: "coupled" gives one x axis
75 per column and one y axis per row. "independent" uses a new xy
76 pair for each cell, left-to-right across each row then
77 iterating rows according to `roworder`.
78
79 The 'pattern' property is an enumeration that may be specified as:
80 - One of the following enumeration values:
81 ['independent', 'coupled']
82
83 Returns
84 -------
85 Any
86 """
87 return self["pattern"]
88
89 @pattern.setter
90 def pattern(self, val):

Callers 8

gFunction · 0.45
UoeFunction · 0.45
plotly.min.jsFile · 0.45
wFunction · 0.45
gFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected