HighMaps:在图例

时间:2016-05-05 09:48:22

标签: javascript highcharts highmaps

http://jsfiddle.net/sgrg93/brev29jg/

legend:{
    borderWidth: 1,
    width: 300     //to increase the width of legend more than that of ColorAxis
},

在上面的小提琴中,图例的宽度大于ColorAxis的宽度。 ColorAxis在图例中左对齐。有没有办法将ColorAxis对齐到图例框中的中心或右边?

我不想使用

this.legend.contentGroup.translate(50,0)

on chart

的load()事件

2 个答案:

答案 0 :(得分:0)

当然,你可以改变对象'legend'来禁用它:

legend:{
  enabled: false
}

答案 1 :(得分:0)

您是否有理由需要空格?

如果删除width属性,则可以简单地使周围的框符合图例的大小,如下所示:

 legend:{
           borderWidth:1
           //width:300
        },

http://jsfiddle.net/brev29jg/1/