Tick chart.
(self)
| 255 | return copied_obj |
| 256 | |
| 257 | def tick(self) -> "Component": |
| 258 | """Tick chart.""" |
| 259 | copied_obj = self.copy() |
| 260 | copied_obj._update_single_chart_spec("config__geoms", ["tick"]) |
| 261 | copied_obj._update_single_chart_spec("config__coordSystem", "generic") |
| 262 | return copied_obj |
| 263 | |
| 264 | def rect(self) -> "Component": |
| 265 | """Rect chart.""" |
nothing calls this directly
no test coverage detected