Text chart.
(self)
| 276 | return copied_obj |
| 277 | |
| 278 | def text(self) -> "Component": |
| 279 | """Text chart.""" |
| 280 | copied_obj = self.copy() |
| 281 | copied_obj._update_single_chart_spec("config__geoms", ["text"]) |
| 282 | copied_obj._update_single_chart_spec("config__coordSystem", "generic") |
| 283 | return copied_obj |
| 284 | |
| 285 | def box(self) -> "Component": |
| 286 | """Box chart.""" |
no test coverage detected