你可能需要把Smartchart生成的图形嵌入到其它系统 首先,所有smartchart设计出来的仪表盘都有一个访问url 你可以直接访问:
http://localhost:8000/echart?type=仪表盘名称
如:http://localhost:8000/echart?type=demo
但是smartchart默认是有权限管理的,所以如果你需要嵌入你自己的系统又不考虑权限,你可以在“设定” –> 公开
然后在你的网页就可以直接iframe了
<iframe src="http://localhost:8000/echart?type=demo" style="width:100%;height:100%"></iframe>