| 6 | |
| 7 | |
| 8 | class Carpet(_BaseTraceType): |
| 9 | _parent_path_str = "" |
| 10 | _path_str = "carpet" |
| 11 | _valid_props = { |
| 12 | "a", |
| 13 | "a0", |
| 14 | "aaxis", |
| 15 | "asrc", |
| 16 | "b", |
| 17 | "b0", |
| 18 | "baxis", |
| 19 | "bsrc", |
| 20 | "carpet", |
| 21 | "cheaterslope", |
| 22 | "color", |
| 23 | "customdata", |
| 24 | "customdatasrc", |
| 25 | "da", |
| 26 | "db", |
| 27 | "font", |
| 28 | "ids", |
| 29 | "idssrc", |
| 30 | "legend", |
| 31 | "legendgrouptitle", |
| 32 | "legendrank", |
| 33 | "legendwidth", |
| 34 | "meta", |
| 35 | "metasrc", |
| 36 | "name", |
| 37 | "opacity", |
| 38 | "stream", |
| 39 | "type", |
| 40 | "uid", |
| 41 | "uirevision", |
| 42 | "visible", |
| 43 | "x", |
| 44 | "xaxis", |
| 45 | "xsrc", |
| 46 | "y", |
| 47 | "yaxis", |
| 48 | "ysrc", |
| 49 | "zorder", |
| 50 | } |
| 51 | |
| 52 | @property |
| 53 | def a(self): |
| 54 | """ |
| 55 | An array containing values of the first parameter value |
| 56 | |
| 57 | The 'a' property is an array that may be specified as a tuple, |
| 58 | list, numpy array, or pandas Series |
| 59 | |
| 60 | Returns |
| 61 | ------- |
| 62 | numpy.ndarray |
| 63 | """ |
| 64 | return self["a"] |
| 65 |
no outgoing calls
no test coverage detected