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

Method group

plotly/graph_objs/_frame.py:52–65  ·  view source on GitHub ↗

An identifier that specifies the group to which the frame belongs, used by animate to select a subset of frames. The 'group' property is a string and must be specified as: - A string - A number that will be converted to a string Returns

(self)

Source from the content-addressed store, hash-verified

50
51 @property
52 def group(self):
53 """
54 An identifier that specifies the group to which the frame
55 belongs, used by animate to select a subset of frames.
56
57 The 'group' property is a string and must be specified as:
58 - A string
59 - A number that will be converted to a string
60
61 Returns
62 -------
63 str
64 """
65 return self["group"]
66
67 @group.setter
68 def group(self, val):

Calls

no outgoing calls