(trace, trace_type, color, **kwargs_marker)
| 174 | |
| 175 | |
| 176 | def _make_trace_for_scatter(trace, trace_type, color, **kwargs_marker): |
| 177 | if trace_type in ["scatter", "scattergl"]: |
| 178 | trace["mode"] = "markers" |
| 179 | trace["marker"] = dict(color=color, **kwargs_marker) |
| 180 | return trace |
| 181 | |
| 182 | |
| 183 | def _facet_grid_color_categorical( |
no outgoing calls
no test coverage detected