forked from pyecharts/pyecharts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/pyecharts/pyecharts
- Loading branch information
Showing
110 changed files
with
2,382 additions
and
619 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These are supported funding model platforms | ||
|
||
custom: https://pyecharts.org/#/zh-cn/donate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from pyecharts import options as opts | ||
from pyecharts.charts import Geo | ||
from pyecharts.datasets import register_url | ||
|
||
register_url("https://echarts-maps.github.io/echarts-china-counties-js/") | ||
|
||
g = ( | ||
Geo() | ||
.add_schema(maptype="海淀区") | ||
.set_global_opts(title_opts=opts.TitleOpts(title="海淀区")) | ||
) | ||
g.render() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from pyecharts import options as opts | ||
from pyecharts.charts import Geo | ||
from pyecharts.datasets import register_url | ||
|
||
register_url("https://echarts-maps.github.io/echarts-countries-js/") | ||
|
||
g = ( | ||
Geo() | ||
.add_schema(maptype="瑞士") | ||
.set_global_opts(title_opts=opts.TitleOpts(title="瑞士")) | ||
) | ||
g.render() |
Oops, something went wrong.