| 6 | |
| 7 | |
| 8 | class Densitymap(_BaseTraceType): |
| 9 | _parent_path_str = "" |
| 10 | _path_str = "densitymap" |
| 11 | _valid_props = { |
| 12 | "autocolorscale", |
| 13 | "below", |
| 14 | "coloraxis", |
| 15 | "colorbar", |
| 16 | "colorscale", |
| 17 | "customdata", |
| 18 | "customdatasrc", |
| 19 | "hoverinfo", |
| 20 | "hoverinfosrc", |
| 21 | "hoverlabel", |
| 22 | "hovertemplate", |
| 23 | "hovertemplatefallback", |
| 24 | "hovertemplatesrc", |
| 25 | "hovertext", |
| 26 | "hovertextsrc", |
| 27 | "ids", |
| 28 | "idssrc", |
| 29 | "lat", |
| 30 | "latsrc", |
| 31 | "legend", |
| 32 | "legendgroup", |
| 33 | "legendgrouptitle", |
| 34 | "legendrank", |
| 35 | "legendwidth", |
| 36 | "lon", |
| 37 | "lonsrc", |
| 38 | "meta", |
| 39 | "metasrc", |
| 40 | "name", |
| 41 | "opacity", |
| 42 | "radius", |
| 43 | "radiussrc", |
| 44 | "reversescale", |
| 45 | "showlegend", |
| 46 | "showscale", |
| 47 | "stream", |
| 48 | "subplot", |
| 49 | "text", |
| 50 | "textsrc", |
| 51 | "type", |
| 52 | "uid", |
| 53 | "uirevision", |
| 54 | "visible", |
| 55 | "z", |
| 56 | "zauto", |
| 57 | "zmax", |
| 58 | "zmid", |
| 59 | "zmin", |
| 60 | "zsrc", |
| 61 | } |
| 62 | |
| 63 | @property |
| 64 | def autocolorscale(self): |
| 65 | """ |
no outgoing calls
no test coverage detected