Skip to content

Commit

Permalink
Update: new year~
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjiandongx committed Mar 18, 2019
1 parent f887154 commit 1e0a3a6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017-2018 chenjiandongx
Copyright (c) 2017-2019 chenjiandongx

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion pyecharts/charts/basic_charts/funnel.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ def add(
"data": data,
"sort": sort_,
"gap": gap,
"label": label_opts.opts,
"label": label_opts,
}
)
13 changes: 11 additions & 2 deletions pyecharts/options/series_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def __init__(
self.opts: dict = {"show": is_show, "lineStyle": line_style}


class MarkPointData:
class MarkPointItem:
def __init__(
self,
name: Optional[str] = None,
Expand Down Expand Up @@ -96,7 +96,7 @@ def __init__(
class MarkPointOpts:
def __init__(
self,
data: List[MarkPointData] = None,
data: List[MarkPointItem] = None,
symbol: Optional[str] = None,
symbol_size: Union[None, Numeric] = None,
label: LabelOpts = LabelOpts(),
Expand All @@ -115,6 +115,10 @@ class MarkLineOpts:
def __init__(self):
self.opts: dict = {}

# TODO
class MarkLineItem:
pass


class EffectOpts:
def __init__(
Expand All @@ -133,6 +137,11 @@ def __init__(self, is_show=True, area_style: AreaStyleOpts = AreaStyleOpts()):
self.opts: dict = {"show": is_show, "areaStyle": area_style}


# TODO
class ItemStyleOpts:
pass


# def symbol(type=None, symbol="", **kwargs):
# """
#
Expand Down

0 comments on commit 1e0a3a6

Please sign in to comment.