Skip to content

Commit

Permalink
rebase fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kgoebber committed Aug 23, 2023
1 parent b9cd362 commit 9839bee
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/metpy/plots/declarative.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,20 @@ class PanelTraits(MetPyHasTraits):
'xx-small', 'x-small', 'small', 'medium', 'large', 'x-large', 'xx-large'.
"""

left_title = Unicode(allow_none=True, default_value=None)
left_title.__doc__ = """A string to set a title for the figure with the location on the
top left of the figure.
This trait sets a user-defined title that will plot at the top left of the figure.
"""

right_title = Unicode(allow_none=True, default_value=None)
right_title.__doc__ = """A string to set a title for the figure with the location on the
top right of the figure.
This trait sets a user-defined title that will plot at the top right of the figure.
"""

plots = List(Any())
plots.__doc__ = """A list of handles that represent the plots (e.g., `ContourPlot`,
`FilledContourPlot`, `ImagePlot`, `SkewPlot`) to put on a given panel.
Expand Down

0 comments on commit 9839bee

Please sign in to comment.