Skip to content

Commit ce2c4d3

Browse files
committed
rebase fixes
1 parent 1d63643 commit ce2c4d3

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/metpy/plots/declarative.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,20 @@ class PanelTraits(MetPyHasTraits):
646646
'xx-small', 'x-small', 'small', 'medium', 'large', 'x-large', 'xx-large'.
647647
"""
648648

649+
left_title = Unicode(allow_none=True, default_value=None)
650+
left_title.__doc__ = """A string to set a title for the figure with the location on the
651+
top left of the figure.
652+
653+
This trait sets a user-defined title that will plot at the top left of the figure.
654+
"""
655+
656+
right_title = Unicode(allow_none=True, default_value=None)
657+
right_title.__doc__ = """A string to set a title for the figure with the location on the
658+
top right of the figure.
659+
660+
This trait sets a user-defined title that will plot at the top right of the figure.
661+
"""
662+
649663
plots = List(Any())
650664
plots.__doc__ = """A list of handles that represent the plots (e.g., `ContourPlot`,
651665
`FilledContourPlot`, `ImagePlot`, `SkewPlot`) to put on a given panel.

0 commit comments

Comments
 (0)