Skip to content

Commit a2da56f

Browse files
committed
Init
0 parents  commit a2da56f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+17501
-0
lines changed

.nojekyll

Whitespace-only changes.

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pyecharts.org

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Website
2+
3+
pyecharts.org website source

_coverpage.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
![logo](https://user-images.githubusercontent.com/19553554/34926690-2bac6002-f9ec-11e7-8b30-aceef8a814e3.png)
2+
3+
# pyecharts
4+
5+
> A Python Echarts Plotting Library.
6+
7+
* Chart: 30+ kinds of charts
8+
* Map: 300+ Chinese cities / 200+ countries and regions
9+
* Platforms: Pure Python / Jupyter Notebook / Web Framework
10+
11+
12+
[GitHub](https://github.com/pyecharts/pyecharts/)
13+
[Get Started](zh-cn/prepare)

_navbar.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- [主页](/)
2+
- 生态系统
3+
- [pyecharts](https://github.com/pyecharts/pyecharts)
4+
- [pyecharts-javascripthon](https://github.com/pyecharts/pyecharts-javascripthon)
5+
- [pyecharts-snapshot](https://github.com/pyecharts/pyecharts-snapshot)
6+
- [jupyter-echarts-pypkg](https://github.com/pyecharts/jupyter-echarts-pypkg)
7+
- [团队](zh-cn/team)
8+
- [捐赠](zh-cn/donate)
9+
- Language
10+
- [中文](/zh-cn/)
11+
- [English](/en-us/)

_sidebar.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
pyecharts 是一个用于生成 Echarts 图表的类库。Echarts 是百度开源的一个数据可视化 JS 库。用 Echarts 生成的图可视化效果非常棒,pyecharts 是为了与 Python 进行对接,方便在 Python 中直接使用数据生成图。
2+
3+
- 基本使用
4+
- [渲染图表](zh-cn/prepare)
5+
- [图表配置](zh-cn/charts)
6+
- 高级话题
7+
- [图表 API](zh-cn/api)
8+
- [自定义地图](zh-cn/customize_map)
9+
- [回调函数和事件处理](zh-cn/advanced)
10+
- [语言翻译扩展](zh-cn/translator)
11+
- 平台支持
12+
- [Jupyter Notebook](zh-cn/jupyter_notebook)
13+
- [Flask](zh-cn/flask)
14+
- [Django](zh-cn/django)
15+
- [web 框架整合](zh-cn/web_integration)
16+
- 其他资源
17+
- [地理地图数据](zh-cn/datasets)
18+
- 项目发布
19+
- [版本日志](zh-cn/changelog)
20+
- [发布日志](zh-cn/release-note/)
21+
- 项目开发
22+
- [技术文档](zh-cn/technical)
23+
- [开发团队](zh-cn/team)
24+
- [赞助者名单](zh-cn/donors)
25+
- [FAQ](zh-cn/faq)
26+

class-relationship-diagram.uml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
@startuml
2+
Base <|-- Chart
3+
Base <|-- Timeline
4+
Base <|-- Grid
5+
Base <|-- Overlap
6+
Chart <|-- Bar
7+
Chart <|-- Boxplot
8+
Chart <|-- EffectScatter
9+
Chart <|-- Funnel
10+
Chart <|-- Geo
11+
Chart <|-- Graph
12+
Chart <|-- HeapMap
13+
Chart <|-- KLine
14+
Chart <|-- Line
15+
Chart <|-- Liquid
16+
Chart <|-- Map
17+
Chart <|-- Parallel
18+
Chart <|-- Pie
19+
Chart <|-- Polar
20+
Chart <|-- Radar
21+
Chart <|-- Sankey
22+
Chart <|-- Scatter
23+
Chart <|-- ThemeRiver
24+
Chart <|-- TreeMap
25+
Chart <|-- WorldCould
26+
Chart <|-- Chart3D
27+
28+
Chart3D <|-- Bar3D
29+
Chart3D <|-- Line3D
30+
Chart3D <|-- Scatter3D
31+
32+
Geo <|-- GeoLines
33+
34+
@enduml

en-us/README.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# pyecharts Document
2+
3+
[![Build Status](https://travis-ci.org/pyecharts/pyecharts.svg?branch=master)](https://travis-ci.org/pyecharts/pyecharts) [![Build status](https://ci.appveyor.com/api/projects/status/81cbsfjpfryv1cl8?svg=true)](https://ci.appveyor.com/project/chenjiandongx/pyecharts) [![codecov](https://codecov.io/gh/pyecharts/pyecharts/branch/master/graph/badge.svg)](https://codecov.io/gh/pyecharts/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-green.svg)](https://opensource.org/licenses/MIT)
4+
5+
6+
[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).
7+
8+
**Basic Usage**
9+
10+
[Get started](en-us/prepare) | [Chart Configuration](en-us/charts_configure) | [Basic Charts](en-us/charts_base) | [Custom Charts](en-us/charts_custom) | [Chart Style](en-us/charts_style) | [Data Analysis and Import](en-us/data_import)
11+
12+
**Advanced Topics**
13+
14+
[Chart API](en-us/api) | [Themes Customization](en-us/themes) | [Map Customization](en-us/customize_map) | [Callback Function & Event Handler](en-us/advanced) | [Language Translator Extension](en-us/translator)
15+
16+
**Platform Support**
17+
18+
[Jupyter Notebook](en-us/jupyter_notebook) | [Flask](en-us/flask) | [Django](en-us/django) | [Web Integration](en-us/web_integration)
19+
20+
**Other Resources**
21+
22+
[Demo Projects](https://github.com/pyecharts/pyecharts-users-cases) | [Geography & Map](en-us/datasets)
23+
24+
**Project Release**
25+
26+
[Changelog](zh-cn/changelog) | [Release Note](zh-cn/release-note)
27+
28+
**Project Development**
29+
30+
[Developer Guide](en-us/for_pyechart_developer) | [Technical Documents](en-us/technical) | [Team](en-us/team) | [Donors List](zh-cn/donors) | [FAQ](en-us/faq)

en-us/_sidebar.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
pyecharts is a class library for generating ECharts charts. ECharts is a data visualization JS library of Baidu Open Source. The graphics generated with ECharts are very visual, and pyecharts is designed to interface with Python, making it easy to use data generation diagrams directly in Python.
2+
3+
- Basic Usage
4+
- [Chart Render](en-us/prepare)
5+
- [Chart Configuration](en-us/charts_configure)
6+
- [Chart Basic](en-us/charts_base)
7+
- [Chart Customization](en-us/charts_custom)
8+
- [Chart Style](en-us/charts_style)
9+
- [Data Analysis and Import](en-us/data_import)
10+
- Advance Topics
11+
- [Chart API](en-us/api)
12+
- [Themes Customization](en-us/themes)
13+
- [Map Customization](en-us/customize_map)
14+
- [Callback Function & Event Handler](en-us/advanced)
15+
- [Language Translator Extension](en-us/translator)
16+
- Platform Support
17+
- [Jupyter Notebook](en-us/jupyter_notebook)
18+
- [Flask](en-us/flask)
19+
- [Django](en-us/django)
20+
- [Web Integration](en-us/web_integration)
21+
- Other Resources
22+
- [Demo Projects](https://github.com/pyecharts/pyecharts-users-cases)
23+
- [Geography & Map](en-us/datasets)
24+
- Project Release
25+
- [Changelog](zh-cn/changelog)
26+
- [Release Note](zh-cn/release-note/)
27+
- Project Development
28+
- [Developer Guide](en-us/for_pyechart_developer)
29+
- [Technical Documents](en-us/technical)
30+
- [Team](en-us/team)
31+
- [Donors List](zh-cn/donors)
32+
- [FAQ](en-us/faq)

0 commit comments

Comments
 (0)