Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Plotting figure elements
Figure.logo
Figure.magnetic_rose
Figure.paragraph
Figure.pygmtlogo
Figure.scalebar
Figure.solar
Figure.text
Expand Down
2 changes: 2 additions & 0 deletions pygmt/figure.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
from pygmt.src.plot import plot as _plot
from pygmt.src.plot3d import plot3d as _plot3d
from pygmt.src.psconvert import psconvert as _psconvert
from pygmt.src.pygmtlogo import pygmtlogo as _pygmtlogo
from pygmt.src.rose import rose as _rose
from pygmt.src.scalebar import scalebar as _scalebar
from pygmt.src.shift_origin import shift_origin as _shift_origin
Expand Down Expand Up @@ -464,6 +465,7 @@ def _repr_html_(self) -> str:
plot = _plot
plot3d = _plot3d
psconvert = _psconvert
pygmtlogo = _pygmtlogo
rose = _rose
scalebar = _scalebar
set_panel = _set_panel
Expand Down
Loading
Loading