1 from pyecharts import options as opts
2 from pyecharts.charts import Gauge, Page
3 
4 gauge=(
5      Gauge()
6      .add("", [("完成率", 66.6)])
7      .set_global_opts(title_opts=opts.TitleOpts(title="Gauge-基本示例"))
8      )
9 gauge.render('gauge.html')

小白学Python(10)——pyecharts 绘制仪表图 Gauge

 

相关文章:

  • 2022-12-23
  • 2021-11-14
  • 2021-12-14
  • 2021-12-19
  • 2021-12-19
  • 2021-12-30
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-19
  • 2022-12-23
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案