FlyingFire
FlyingFire
我在`jupyter notebook`上面用`IPython`自带的`HTML`方法,可以将`echarts`返回的`json`传入到``标签中,可以在当前页面做图而不是打开新页面: ```python # coding:utf-8 from echarts import Echart, Legend, Bar, Axis from IPython.display import HTML chart = Echart('月份GDP', '测试文本') chart.use(Bar('China', [2, 3, 4, 5])) chart.use(Legend(['GDP'])) chart.use(Axis('category', 'bottom', data=['Nov', 'Dec',...
this is also what i need, wish it could be provided in later version~
@trey-wallis Where can I find this document , I just meet the same question~ thks~