Area chart.
(self)
| 227 | return copied_obj |
| 228 | |
| 229 | def area(self) -> "Component": |
| 230 | """Area chart.""" |
| 231 | copied_obj = self.copy() |
| 232 | copied_obj._update_single_chart_spec("config__geoms", ["area"]) |
| 233 | copied_obj._update_single_chart_spec("config__coordSystem", "generic") |
| 234 | return copied_obj |
| 235 | |
| 236 | def trail(self) -> "Component": |
| 237 | """Trail chart.""" |
nothing calls this directly
no test coverage detected