Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 660 Bytes

gauge_color.md

File metadata and controls

28 lines (23 loc) · 660 Bytes

pyecharts 代码 / 效果

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="Gauge-不同颜色"),
        legend_opts=opts.LegendOpts(is_show=False),
    )
    .render("gauge_color.html")
)
<iframe width="100%" height="800px" src="Gauge/gauge_color.html"></iframe>