-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
23 lines (21 loc) · 1.07 KB
/
__init__.py
File metadata and controls
23 lines (21 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from anyplotlib.figure import Figure, GridSpec, SubplotSpec, subplots
from anyplotlib.figure_plots import Axes, Plot1D, Plot2D, PlotMesh, Plot3D, PlotBar
from anyplotlib.callbacks import CallbackRegistry, Event
from anyplotlib.widgets import (
Widget, RectangleWidget, CircleWidget, AnnularWidget,
CrosshairWidget, PolygonWidget, LabelWidget,
VLineWidget, HLineWidget, RangeWidget,
)
# ── Global help flag ──────────────────────────────────────────────────────
# Set to False to suppress help badges on all figures in this session.
# Default True: badges appear whenever a figure has help text set.
show_help: bool = True
__all__ = [
"Figure", "GridSpec", "SubplotSpec", "subplots",
"Axes", "Plot1D", "Plot2D", "PlotMesh", "Plot3D", "PlotBar",
"CallbackRegistry", "Event",
"Widget", "RectangleWidget", "CircleWidget", "AnnularWidget",
"CrosshairWidget", "PolygonWidget", "LabelWidget",
"VLineWidget", "HLineWidget", "RangeWidget",
"show_help",
]