Use python to write a dashboard

pyecharts need to download, pip install pyecharts

Dashboard Gauge # Import module
from pyecharts import Gauge

# Create an instance gauge
gauge = Gauge ( 'dashboard exemplary')

gauge.add (
# configurable parameter

Icon title

'业务指标',

Pointer # Name
'completion rate',

# Completion rate of
66.66,

FIG dashboard # start angle
angle_range = [180,0],

# Maximum, minimum
scale_range = [0,100],

# Title whether
is_legend_show = False,
)

gauge
Here Insert Picture Description

Guess you like

Origin blog.csdn.net/zhige1112/article/details/89361920