Circle chart.
(self)
| 248 | return copied_obj |
| 249 | |
| 250 | def circle(self) -> "Component": |
| 251 | """Circle chart.""" |
| 252 | copied_obj = self.copy() |
| 253 | copied_obj._update_single_chart_spec("config__geoms", ["circle"]) |
| 254 | copied_obj._update_single_chart_spec("config__coordSystem", "generic") |
| 255 | return copied_obj |
| 256 | |
| 257 | def tick(self) -> "Component": |
| 258 | """Tick chart.""" |
nothing calls this directly
no test coverage detected