File size: 968 Bytes
7d8711c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from . import artist
from .axes import Axes
from .backend_bases import RendererBase
from .patches import ConnectionPatch, Rectangle

from .typing import ColorType, LineStyleType

class InsetIndicator(artist.Artist):
    def __init__(
        self,
        bounds: tuple[float, float, float, float] | None = ...,
        inset_ax: Axes | None = ...,
        zorder: float | None = ...,
        **kwargs
    ) -> None: ...
    def set_alpha(self, alpha: float | None) -> None: ...
    def set_edgecolor(self, color: ColorType | None) -> None: ...
    def set_color(self, c: ColorType | None) -> None: ...
    def set_linewidth(self, w: float | None) -> None: ...
    def set_linestyle(self, ls: LineStyleType | None) -> None: ...
    @property
    def rectangle(self) -> Rectangle: ...
    @property
    def connectors(self) -> tuple[ConnectionPatch, ConnectionPatch, ConnectionPatch, ConnectionPatch] | None: ...
    def draw(self, renderer: RendererBase) -> None: ...