在highcharts中添加其他标签

时间:2016-08-05 22:37:04

标签: python highcharts

下图是boxplot可视化。由于有不同颜色的标签,我想在图例中添加其他数据。 enter image description here 这是我在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'
        }]
    }]

如何在图例中添加其他项?

0 个答案:

没有答案