Arc chart.
(self)
| 269 | return copied_obj |
| 270 | |
| 271 | def arc(self) -> "Component": |
| 272 | """Arc chart.""" |
| 273 | copied_obj = self.copy() |
| 274 | copied_obj._update_single_chart_spec("config__geoms", ["arc"]) |
| 275 | copied_obj._update_single_chart_spec("config__coordSystem", "generic") |
| 276 | return copied_obj |
| 277 | |
| 278 | def text(self) -> "Component": |
| 279 | """Text chart.""" |
nothing calls this directly
no test coverage detected