Highcharts如何将图例作为散点图上的数据标签

时间:2015-07-16 00:53:07

标签: javascript jquery highcharts

我有一个highcharts散点图,我希望标记显示图例名称而不是数据点, enter image description here

到这个

enter image description here 我该怎么做到这一点。任何帮助表示赞赏。

这是小提琴http://jsfiddle.net/pratik24/3ovbw8m9/

 dataLabels: {
               enabled: true,
            allowOverlap:false,
                align: 'left',
                x:2,
                y:15
            }

1 个答案:

答案 0 :(得分:1)

我找到了一个可行的解决方案,您可以在dataLabels中添加格式化程序

 formatter:function(){
                return this.series.name;
            }

并在图例中添加

          labelFormatter: function () {
            //you can return something
            return '-';
        }

这里是小提琴http://jsfiddle.net/jgonzalez315/885pobv6/2/

我希望这有帮助!