html+echarts另存为html
时间: 2024-01-13 21:05:11 浏览: 145
你可以使用以下代码将HTML和Echarts图表保存为HTML文件:
```python
import os
from pyecharts import options as opts
from pyecharts.charts import Bar
# 创建一个柱状图
bar = (
Bar()
.add_xaxis(["A", "B", "C", "D", "E"])
.add_yaxis("Series 1", [10, 20, 30, 40, 50])
.set_global_opts(title_opts=opts.TitleOpts(title="Bar Chart"))
)
# 将图表转换为HTML代码
html_code = bar.render_embed()
# 创建HTML文件
html_file = "echarts.html"
with open(html_file, "w", encoding="utf-8") as f:
f.write(html_code)
# 打开HTML文件
os.system(html_file)
```
这段代码使用了pyecharts库来创建一个柱状图,并将图表转换为HTML代码。然后,将HTML代码写入一个HTML文件中,并使用操作系统命令打开该文件。你可以根据自己的需求修改图表的数据和样式。
阅读全文