(*args, data: DataParamType = None, **kwargs)
| 3341 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 3342 | @_copy_docstring_and_deprecators(Axes.contourf) |
| 3343 | def contourf(*args, data: DataParamType = None, **kwargs) -> QuadContourSet: |
| 3344 | __ret = gca().contourf( |
| 3345 | *args, **({"data": data} if data is not None else {}), **kwargs |
| 3346 | ) |
| 3347 | if __ret._A is not None: # type: ignore[attr-defined] |
| 3348 | sci(__ret) |
| 3349 | return __ret |
| 3350 | |
| 3351 | |
| 3352 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |