Skip to content

Commit

Permalink
update GraphNode
Browse files Browse the repository at this point in the history
  • Loading branch information
sunhailin-Leo committed Aug 21, 2023
1 parent 23e7bfc commit 0a5a09d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyecharts/options/charts_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ def __init__(
itemstyle_opts: Union[ItemStyleOpts, dict, None] = None,
label_opts: Union[LabelOpts, dict, None] = None,
is_disabled_emphasis: Optional[bool] = None,
emphasis_linestyle_opts: Union[LineStyleOpts, dict, None] = None,
emphasis_itemstyle_opts: Union[ItemStyleOpts, dict, None] = None,
emphasis_label_opts: Union[LabelOpts, dict, None] = None,
blur_linestyle_opts: Union[LineStyleOpts, dict, None] = None,
blur_itemstyle_opts: Union[ItemStyleOpts, dict, None] = None,
blur_label_opts: Union[LabelOpts, dict, None] = None,
is_disabled_select: Optional[bool] = None,
select_linestyle_opts: Union[LineStyleOpts, dict, None] = None,
select_itemstyle_opts: Union[ItemStyleOpts, dict, None] = None,
select_label_opts: Union[LabelOpts, dict, None] = None,
tooltip_opts: Union[TooltipOpts, dict, None] = None,
):
Expand All @@ -56,16 +56,16 @@ def __init__(
"label": label_opts,
"emphasis": {
"disabled": is_disabled_emphasis,
"lineStyle": emphasis_linestyle_opts,
"itemStyle": emphasis_itemstyle_opts,
"label": emphasis_label_opts,
},
"blur": {
"lineStyle": blur_linestyle_opts,
"itemStyle": blur_itemstyle_opts,
"label": blur_label_opts,
},
"select": {
"disabled": is_disabled_select,
"lineStyle": select_linestyle_opts,
"itemStyle": select_itemstyle_opts,
"label": select_label_opts,
},
"tooltip": tooltip_opts,
Expand Down

0 comments on commit 0a5a09d

Please sign in to comment.