Python可視化神器pyecharts繪制儀表盤
儀表盤
儀表盤的效果我隻能說炫酷而已,如果想要運用在實際的場景中,我其實也不清楚那個場景比較適合,但是pyecharts畢竟是炫酷可視化的利器,炫酷自然也就有它瞭。
小汽車儀表盤是長這樣的,下面我們來看看pyecharts的儀表盤是怎麼樣子的。
儀表盤模板系列
假期剩餘額度
import pyecharts.options as opts from pyecharts.charts import Gauge ( Gauge(init_opts=opts.InitOpts(width="1200px", height="600px")) .add(series_name="", data_pair=[["", 5.5]]) .set_global_opts( title_opts=opts.TitleOpts(title="假期剩餘率"), legend_opts=opts.LegendOpts(is_show=False), tooltip_opts=opts.TooltipOpts(is_show=True, formatter="{a} <br/>{b} : {c}%"), ) .render("完成率.html") )
任務完成率
from pyecharts import options as opts from pyecharts.charts import Gauge c = ( Gauge() .add("", [("", 96.6)] ) .set_global_opts(title_opts=opts.TitleOpts(title="任務完成率")) .render("任務完成率.html") )
多色儀表盤
from pyecharts import options as opts from pyecharts.charts import Gauge c = ( Gauge() .add( "", [("", 55.5)], axisline_opts=opts.AxisLineOpts( linestyle_opts=opts.LineStyleOpts( color=[(0.3, "#67e0e3"), (0.7, "#37a2da"), (1, "#fd666d")], width=30 ) ), ) .set_global_opts( title_opts=opts.TitleOpts(title="完成率"), legend_opts=opts.LegendOpts(is_show=False), ) .render("多色儀表盤.html") )
儀表盤內部字體添加
到此這篇關於Python可視化神器pyecharts繪制儀表盤的文章就介紹到這瞭,更多相關python繪制儀表盤內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Python可視化神器pyecharts繪制餅狀圖
- pyecharts實現數據可視化
- Python可視化神器pyecharts繪制地理圖表
- Python echarts實現數據可視化實例詳解
- 如何用python繪制雷達圖