Trail chart.
(self)
| 234 | return copied_obj |
| 235 | |
| 236 | def trail(self) -> "Component": |
| 237 | """Trail chart.""" |
| 238 | copied_obj = self.copy() |
| 239 | copied_obj._update_single_chart_spec("config__geoms", ["trail"]) |
| 240 | copied_obj._update_single_chart_spec("config__coordSystem", "generic") |
| 241 | return copied_obj |
| 242 | |
| 243 | def scatter(self) -> "Component": |
| 244 | """Scatter chart.""" |
nothing calls this directly
no test coverage detected