Skip to content

Commit

Permalink
👏 release version 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjiandongx committed Sep 8, 2017
2 parents 039f181 + 9ff4029 commit fb66506
Show file tree
Hide file tree
Showing 57 changed files with 838 additions and 462 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ __pycache__/
.idea
# Distribution / packaging
.Python
test/render.html
env/
build/
develop-eggs/
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,21 @@

pyecharts is a library to generate charts using Echarts. It simply provides the interface between Echarts and Python.

[![Build Status](https://travis-ci.org/chenjiandongx/pyecharts.svg?branch=master)](https://travis-ci.org/chenjiandongx/pyecharts) [![codecov](https://codecov.io/gh/chenjiandongx/pyecharts/branch/master/graph/badge.svg)](https://codecov.io/gh/chenjiandongx/pyecharts) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Build Status](https://travis-ci.org/chenjiandongx/pyecharts.svg?branch=master)](https://travis-ci.org/chenjiandongx/pyecharts) [![codecov](https://codecov.io/gh/chenjiandongx/pyecharts/branch/master/graph/badge.svg)](https://codecov.io/gh/chenjiandongx/pyecharts) [![PyPI version](https://badge.fury.io/py/pyecharts.svg)](https://badge.fury.io/py/pyecharts) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Introduction
[Echarts](https://github.com/ecomfe/echarts) is an open source library from Baidu for data visualization in javascript. It has awesome demo pages so I started to look out for an interface library so that I could use it in Python. I ended up with [echarts-python](https://github.com/yufeiminds/echarts-python) on github but it lacks of documentation and was not updated for a while. Just like many other Python projects, I started my own project, pyecharts, referencing echarts-python and another library [pygal](https://github.com/Kozea/pygal).

## Installation
pyecharts works on Python2 and Python3. The latest release is 0.2.3. For more information please refer to [changelog.md](https://github.com/chenjiandongx/pyecharts/blob/master/changelog.md)
pyecharts works on Python2 and Python3. For more information please refer to [changelog.md](https://github.com/chenjiandongx/pyecharts/blob/master/changelog.md)

### Jupyter-Notebook
Make sure you hava installed jupyter-notebook enviroment if you want to show your charts on notebook.
How to install it?
```
$ pip install notebook
```
### pyecharts
You can install it via pip
```
$ pip install pyecharts
Expand Down
22 changes: 16 additions & 6 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
# Version Log

## 项目期待
* ### version 0.2.5(Dev)

* visualmap 将会支持连续和分段两种类型
* Todo

* ### version 0.2.4 - 2017.9.8(Current)

#### Added
* [issue#148](https://github.com/chenjiandongx/pyecharts/issues/148) 为 Radar.config() 新增 `legend_text_size` 参数
* [issue#148](https://github.com/chenjiandongx/pyecharts/issues/148) 为 Legend 通用配置项新增 `legend_text_color``legend_text_font` 参数
* [issue#156](https://github.com/chenjiandongx/pyecharts/issues/156) 为 xyAxis 通用配置项新增 `xaxis_force_interval``yaxis_force_interval` 参数
* 为 Visualmap 通用配置项新增 `is_piecewise``visual_split_number` 参数
* [issue#160](https://github.com/chenjiandongx/pyecharts/issues/160) 为 Base 类新增 `page_title` 参数,初始化类实例的时候可指定生成的 html 文件 `<title>` 标签的值。自定义类 Grid/Overlap/Timeline/Page 以第一个添加的实例的 `page_title` 参数为准。
* [issue#165](https://github.com/chenjiandongx/pyecharts/issues/165) 为 Radar 图新增 `label` 通用配置项,现可以展示 `label` 文字标签,但是建议在数据量少的时候使用(比如数据量为 1 的时候)

## 版本信息
#### Changed
* 压缩 js 文件体积,总体体积减少约 0.3MB

* ### version 0.2.4(Dev)
* Todo
#### Fixed
* [issue#158](https://github.com/chenjiandongx/pyecharts/issues/158) 修复 Grid/Timeline/Overlap 在 Page 中不能正常使用的 bug

* ### version 0.2.3 - 2017.9.1(Current)
* ### version 0.2.3 - 2017.9.1

#### Fixed
* [issue#143](https://github.com/chenjiandongx/pyecharts/issues/143) [issue#146](https://github.com/chenjiandongx/pyecharts/issues/146) 修复默认状态下 Graph 不显示连线的 bug
Expand Down
2 changes: 1 addition & 1 deletion docs/en-us/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pyecharts is a library to generate charts using Echarts. It simply provides the interface between Echarts and Python.

[![Build Status](https://travis-ci.org/chenjiandongx/pyecharts.svg?branch=master)](https://travis-ci.org/chenjiandongx/pyecharts) [![codecov](https://codecov.io/gh/chenjiandongx/pyecharts/branch/master/graph/badge.svg)](https://codecov.io/gh/chenjiandongx/pyecharts) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Build Status](https://travis-ci.org/chenjiandongx/pyecharts.svg?branch=master)](https://travis-ci.org/chenjiandongx/pyecharts) [![codecov](https://codecov.io/gh/chenjiandongx/pyecharts/branch/master/graph/badge.svg)](https://codecov.io/gh/chenjiandongx/pyecharts) [![PyPI version](https://badge.fury.io/py/pyecharts.svg)](https://badge.fury.io/py/pyecharts) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

* [First-steps](https://github.com/chenjiandongx/pyecharts/blob/master/document/en-us/documentation.md#First-steps)
* [Global-options](https://github.com/chenjiandongx/pyecharts/blob/master/document/en-us/documentation.md#Global-options)
Expand Down
Loading

0 comments on commit fb66506

Please sign in to comment.