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

Method easing

plotly/graph_objs/layout/_transition.py:33–53  ·  view source on GitHub ↗

The easing function used for the transition The 'easing' property is an enumeration that may be specified as: - One of the following enumeration values: ['linear', 'quad', 'cubic', 'sin', 'exp', 'circle', 'elastic', 'back', 'bounce', 'linea

(self)

Source from the content-addressed store, hash-verified

31
32 @property
33 def easing(self):
34 """
35 The easing function used for the transition
36
37 The 'easing' property is an enumeration that may be specified as:
38 - One of the following enumeration values:
39 ['linear', 'quad', 'cubic', 'sin', 'exp', 'circle',
40 'elastic', 'back', 'bounce', 'linear-in', 'quad-in',
41 'cubic-in', 'sin-in', 'exp-in', 'circle-in', 'elastic-in',
42 'back-in', 'bounce-in', 'linear-out', 'quad-out',
43 'cubic-out', 'sin-out', 'exp-out', 'circle-out',
44 'elastic-out', 'back-out', 'bounce-out', 'linear-in-out',
45 'quad-in-out', 'cubic-in-out', 'sin-in-out', 'exp-in-out',
46 'circle-in-out', 'elastic-in-out', 'back-in-out',
47 'bounce-in-out']
48
49 Returns
50 -------
51 Any
52 """
53 return self["easing"]
54
55 @easing.setter
56 def easing(self, val):

Calls

no outgoing calls

Tested by

no test coverage detected