Skip to content

Commit

Permalink
:gems: release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Sep 28, 2017
1 parent 2514641 commit 0e7f2aa
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 1 deletion.
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change log

## 1.3.1 - 28.09.2017

###Fixed

1. [#4](https://github.com/chfw/jupyter-echarts/issues/4) hebei map is missing
1. [#6](https://github.com/chfw/jupyter-echarts/issues/6) hubei map is missing too
1. [#3](https://github.com/chfw/jupyter-echarts/issues/3) China map is fixed due to
the regression caused by 1.3.0.

## 1.3.0 - 25.09.2017

### Added
Expand Down
45 changes: 45 additions & 0 deletions demo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
function make_map(cityname, dom_id){
achart = echarts.init(document.getElementById(dom_id));
var option = {
"title": [
{
"textStyle": {
"color": "#000",
"fontSize": 18
},
"subtext": "",
"text": cityname,
"top": "auto",
"subtextStyle": {
"color": "#aaa",
"fontSize": 12
},
"left": "auto"
}
],
"legend": [
{
"selectedMode": "multiple",
"top": "top",
"orient": "horizontal",
"data": [
""
],
"left": "center",
"show": true
}
],
"backgroundColor": "#fff",
"series": [
{
"mapType": cityname,
"data": [],
"name": "",
"symbol": "circle",
"type": "map",
"roam": true
}
]
};
achart.setOption(option);
}
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ It is embedded in [pyecharts](https://github.com/chenjiandongx/pyecharts) v0.1.9
1. echarts-gl
1. echarts-liquidfill
1. echarts-wordcloud
1. echarts maps: world, china, 28 province maps, 369 city maps.
1. echarts-china-cities-js: World, China, 28 province maps, 369 city maps.
1. echarts-countries-js: 212 countries excluding China

## Installation to jupyter

Expand Down

0 comments on commit 0e7f2aa

Please sign in to comment.