(x_domain, y_domain)
| 1073 | |
| 1074 | |
| 1075 | def _init_subplot_domain(x_domain, y_domain): |
| 1076 | # No change to layout since domain traces are labeled individually |
| 1077 | subplot_ref = SubplotRef( |
| 1078 | subplot_type="domain", |
| 1079 | layout_keys=(), |
| 1080 | trace_kwargs={"domain": {"x": tuple(x_domain), "y": tuple(y_domain)}}, |
| 1081 | ) |
| 1082 | |
| 1083 | return (subplot_ref,) |
| 1084 | |
| 1085 | |
| 1086 | def _subplot_type_for_trace_type(trace_type): |