|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 catalpa-bungei 于 2023-7-26 21:25 编辑
在绘制热力地图时
geo
.add("shooting number", link,type_='heatmap')
.set_global_opts(
title_opts=opts.TitleOpts(title="shooting number distribution"),
visualmap_opts=opts.VisualMapOpts(max_ = legend_bound,is_piecewise=True,pieces=pieces1),
)
其中热力图的颜色与图例pieces1中设置的各个区间的颜色不相同,该如何处理
我的pieces1如下:
pieces1 = [
{'min': 0, 'max': 50, 'label': '0-50', 'color': 'lightgray'},
{'min': 50, 'max': 100, 'label': '50-100', 'color': 'cyan'},
{'min': 100, 'max': 200, 'label': '100-200', 'color': 'lightsteelblue'},
{'min': 200, 'max': 300, 'label': '200-300', 'color': 'cornflowerblue'},
{'min': 300, 'max': 500, 'label': '300-500', 'color': 'royalblue'},
{'min': 500, 'max': 1000, 'label': '500-1000', 'color': 'blue'},
{'min': 1000, 'max': 1500, 'label': '1000-1500', 'color': 'midnightblue'}
]
补充成
visualmap_opts=opts.VisualMapOpts(max_ = legend_bound,is_piecewise=True,pieces=pieces1,
color=["lightgray", "cyan", "lightsteelblue", "cornflowerblue",'royalblue','blue'])
会有报错:__init__() got an unexpected keyword argument 'color'
本帖最后由 hellomyprogram 于 2023-7-26 21:43 编辑
大概可以用range-color代替color
|
|