下图是boxplot可视化。由于有不同颜色的标签,我想在图例中添加其他数据。 这是我在Python中的boxplot标签的代码。
series = [{
'name': 'Percentile Values',
'data': data
},{
'name': 'Atoms',
'type':'scatter',
'keys': ['x', 'y', 'z'],
'data': obss,
'tooltip': {
'pointFormat': 'Index: {point.z}, Suspicion Score: {point.y}'
},
'zones': [{
'value': THRES,
'color': 'black'
}, {'value': 1.0,
'color': 'red'
}]
}]
如何在图例中添加其他项?