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')
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')
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。