values(), markpoint_opts=opts.MarkPointOpts( data=[{"type": "min", "symbol": SymbolType.ARROW, "itemStyle": {"color": "blue"}}] ), ) .set_global_opts(title_opts=opts.TitleOpts(title="Line-MarkPoint")) ) return c chenjiandongx closed this as completed May 30, 2019 chenjiandongx...
from pyecharts import options as opts from pyecharts.charts import Grid, Line def line1(): x = ['第1季度', '第2季度', '第3季度', '第4季度'] y1 = [124, 230, 239, 137] line1 = ( Line() .add_xaxis(x) .add_yaxis('涂料销量', y1, markpoint_opts=opts.MarkPointOpts(data=...