Skip to content

Commit

Permalink
update version 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjiandongx committed Jul 30, 2017
1 parent cf2edef commit 008802c
Show file tree
Hide file tree
Showing 20 changed files with 509 additions and 125,182 deletions.
254 changes: 249 additions & 5 deletions README.md

Large diffs are not rendered by default.

11 changes: 8 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,16 @@
* version 0.1.7
增加并行显示图表功能

* version 0.1.8(当前版本)
* 新增在 Jupyter Notebook 中展示图表功能
特别感谢 [@ygw365](https://github.com/ygw365) 提供这部分的代码模板 和 [muxuezi](https://github.com/muxuezi) 协助对代码进行改进!
* version 0.1.8
* 新增在 Jupyter Notebook 中展示图表功能。感谢 [@ygw365](https://github.com/ygw365) 提供这部分的代码模板 和 [@muxuezi](https://github.com/muxuezi) 协助对代码进行改进!
* 新增对自定义地图的使用说明

* version 0.1.9(当前版本)
* 解决在 macos 下安装出错的问题。感谢 [@chfw](https://github.com/chfw) 提供的解决方案。
* datazoom 中增加了将组件效果显示在 y 坐标轴中的功能。(参见 KLine 图)
* 增加了对 Pandas 和 Numpy 数据的简单处理。解决直接传入 Pandas 和 Numpy 数据类型出错的问题。(参见开始使用)
* 增加 Bar3D, Line3D, Scatter3D 三种 3D 立体图表。

## 项目期待

* 视项目情况考虑增加一份英文文档
Binary file added images/bar3D-0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/bar3D-1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/bar3D-2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/bar3D-3.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/kline-2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/line3D-0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/line3D-1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/scatter3D-0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/wechat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pyecharts/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
#coding=utf-8

__version__ = '0.1.8'
__version__ = '0.1.9'
__author__ = 'chenjiandongx'

from pyecharts.charts.bar import Bar
Expand Down
2 changes: 1 addition & 1 deletion pyecharts/charts/scatter3D.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class Scatter3D(Base):
"""
<<< Scatter chart >>>
<<< Scatter3D chart >>>
"""

def __init__(self, title="", subtitle="", **kwargs):
Expand Down
7 changes: 7 additions & 0 deletions pyecharts/option.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,10 +601,17 @@ def grid3D(grid3D_width=100,
"""
:param grid3D_width:
3D axis width
:param grid3D_height:
3D axis height
:param grid3D_depth:
3D axis depth
:param grid3D_rotate_speed:
3D charts rotate speed
:param is_grid3D_rotate:
whether rotate 3D charts
:param grid3D_rotate_sensitivity:
3D charts rotete sensitivity, The greater the value, the more sensitive.
:param kwargs:
:return:
"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__title__ = 'pyecharts'
__description__ = 'Python echarts, make charting easier'
__url__ = 'https://github.com/chenjiandongx/pyecharts'
__version__ = '0.1.8'
__version__ = '0.1.9'
__author__ = 'chenjiandongx'
__author_email__ = '[email protected]'
__license__ = 'MIT'
Expand Down
Loading

0 comments on commit 008802c

Please sign in to comment.