pyecharts 作柱状图能隐藏图例吗怎么隐藏?
.set_global_opts(
xaxis_opts = opts.AxisOpts(
is_show = False, #隐藏X轴刻度
),
yaxis_opts = opts.AxisOpts(
is_show = False, #隐藏Y轴刻度
),
legend_opts = opts.LegendOpts(is_show = False), #隐藏图例
title_opts = opts.TitleOpts(title = None), #隐藏标题
)