Hello World
首先来尝试一下官方的例子:12345678# 在IPython环境下from echarts import Echart, Legend, Bar, Axischart = Echart('GDP', 'This is a fake chart')chart.use(Bar('China', [2, 3, 4, 5]))chart.use(Legend(['GDP']))chart.use(Axis('category', 'bottom', data=['Nov', 'Dec', 'Jan', 'Feb']))chart.plot()
兼容IPython
常用图表: 饼图,柱状图,折线图和散点图
饼图:
|
|
结果:
柱状图:
|
|
散点图:
|
|
结果:
折线图
|
|
结果:
问题:
- 嵌入IFrame大小问题
width:, height: ?
。 - axis 无法隐藏问题,特别是在
饼图
中。 - 没有代码提示。
- 交互设置困难。