You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: pygwalker/api/gradio.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ def get_html_on_gradio(
38
38
- env: (Literal['Jupyter' | 'Streamlit'], optional): The enviroment using pygwalker. Default as 'Jupyter'
39
39
- field_specs (List[FieldSpec], optional): Specifications of some fields. They'll been automatically inferred from `df` if some fields are not specified.
Copy file name to clipboardexpand all lines: pygwalker/api/html.py
+5-5
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ def _to_html(
40
40
- field_specs (List[FieldSpec], optional): Specifications of some fields. They'll been automatically inferred from `df` if some fields are not specified.
- dark ('media' | 'light' | 'dark'): 'media': auto detect OS theme.
43
+
- appearance ('media' | 'light' | 'dark'): 'media': auto detect OS theme.
44
44
"""
45
45
check_expired_params(kwargs)
46
46
@@ -95,7 +95,7 @@ def to_html(
95
95
- field_specs (List[FieldSpec], optional): Specifications of some fields. They'll been automatically inferred from `df` if some fields are not specified.
# alias for appearance, dark is deprecated, please use appearance instead
25
24
appearance: IAppearance='media',
26
25
spec: str="",
27
26
use_kernel_calc: Optional[bool] =None,
@@ -42,7 +41,7 @@ def walk(
42
41
- env: (Literal['Jupyter' | 'JupyterWidget'], optional): The enviroment using pygwalker. Default as 'JupyterWidget'
43
42
- field_specs (List[FieldSpec], optional): Specifications of some fields. They'll been automatically inferred from `df` if some fields are not specified.
Copy file name to clipboardexpand all lines: pygwalker/api/streamlit.py
+2-2
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ def __init__(
78
78
Kargs:
79
79
- field_specs (List[FieldSpec], optional): Specifications of some fields. They'll been automatically inferred from `df` if some fields are not specified.
80
80
- theme_key ('vega' | 'g2'): theme type.
81
-
- dark (Literal['media' | 'light' | 'dark']): 'media': auto detect OS theme.
81
+
- appearance (Literal['media' | 'light' | 'dark']): 'media': auto detect OS theme.
- spec_io_mode (ISpecIOMode): spec io mode, Default to "r", "r" for read, "rw" for read and write.
84
84
- kernel_computation(bool): Whether to use kernel compute for datas, Default to True.
@@ -301,7 +301,7 @@ def get_streamlit_html(
301
301
Kargs:
302
302
- field_specs (List[FieldSpec], optional): Specifications of some fields. They'll been automatically inferred from `df` if some fields are not specified.
303
303
- theme_key ('vega' | 'g2'): theme type.
304
-
- dark (Literal['media' | 'light' | 'dark']): 'media': auto detect OS theme.
304
+
- appearance (Literal['media' | 'light' | 'dark']): 'media': auto detect OS theme.
0 commit comments